-
-
Save smach/051cd9de9ebf8bf9def1 to your computer and use it in GitHub Desktop.
This file contains 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