Created
February 12, 2015 15:11
-
-
Save msukmanowsky/caf4aebc2bf502800218 to your computer and use it in GitHub Desktop.
Revisions
-
msukmanowsky created this gist
Feb 12, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ install.packages("jsonlite", dependencies = TRUE) install.packages("RCurl", dependencies = TRUE) library("jsonlite") library("RCurl") base_url <- "https://api.parsely.com/v2" apikey <- "computerworld.com" api_secret <- "YOUR SECRET KEY" # Get top posts url = paste(base_url, "/analytics/posts?apikey=", apikey, "&secret=", secret, sep = "") top_posts <- getURL(url) top_posts <- jsonlite::fromJSON(top_posts)