Skip to content

Instantly share code, notes, and snippets.

@stevehenderson
Created March 21, 2014 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevehenderson/9688189 to your computer and use it in GitHub Desktop.
Save stevehenderson/9688189 to your computer and use it in GitHub Desktop.
R Code to Access Parse.com
library('RCurl')
library('XML')
library('rjson')
clist<-c('X-Parse-Application-Id' = "abcdefghijklmnopqrstuvwxyz",
'X-Parse-REST-API-Key' = "hgjhfghjergbfnrebghjreghjtghjrebnerb" )
opts = list(httpheader = clist,ssl.verifypeer = FALSE)
#Note the limit is set to 1000 (100 is the default; 1000 is max)
results<-getURL("https://api.parse.com/1/classes/TestObject?limit=1000", .opts = opts)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment