Created
February 12, 2015 15:11
-
-
Save msukmanowsky/caf4aebc2bf502800218 to your computer and use it in GitHub Desktop.
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
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