Search This Blog

Monday 16 January 2012

Crawling facebook with R

FROM: http://www.r-bloggers.com/crawling-facebook-with-r/

January 15, 2012
By

(This article was first published on Romain Francois, Professional R Enthusiast - Tag - R, and kindly contributed to R-bloggers)

So, let's crawl some data out of facebook using R. Don't get too excited though, this is just a weekend whatif project. Anyway, so for example, I want to download some photos where I'm tagged.

First, we need an access token from facebook. I don't know how to get this programmatically, so let's get one manually, log on to facebook and then go to the Graph API Explorer

graph_api_explorer.png

Grab the access token and save it into a variable in R

access_token <- "************..."

Now we need to study the graph api to figure out the url we need to build to do what we want to do, e.g. here we want "me/photos". I've wrapped this into an R function:


And then we can use it:


That's it, I told you it was not that exciting, but it was still worth playing with ...




To leave a comment for the author, please follow the link and comment on his blog: Romain Francois, Professional R Enthusiast - Tag - R.



R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

No comments:

Post a Comment