Skip to content

Instantly share code, notes, and snippets.

@msukmanowsky
Created February 12, 2015 15:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save msukmanowsky/caf4aebc2bf502800218 to your computer and use it in GitHub Desktop.
Save msukmanowsky/caf4aebc2bf502800218 to your computer and use it in GitHub Desktop.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment