Created
March 21, 2014 15:02
-
-
Save stevehenderson/9688189 to your computer and use it in GitHub Desktop.
R Code to Access Parse.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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