R/get_facebook.R

get_facebook <-
function(links, sleep.time=0) {
    fbk.response <- data.frame()
    fbk.call <- paste0("http://graph.facebook.com/?fields=share&id=",links,"&format=json")
    if(.Platform$OS.type == "windows") { if(!file.exists("cacert.perm")) download.file(url="https://curl.haxx.se/ca/cacert.pem", destfile="cacert.perm") }
    if(.Platform$OS.type == "windows") { api_scrapper <- function(x) try(RCurl::getURL(x, cainfo = "cacert.perm", timeout = 240, ssl.verifypeer = FALSE)) } else { 
    api_scrapper <- function(x) try(RCurl::getURL(x, timeout = 240, ssl.verifypeer = FALSE)) }
    Sys.sleep(sleep.time)
    fbk.response <- try(data.frame(jsonlite::fromJSON(api_scrapper(fbk.call))))
    return(fbk.response)
}
toledobastos/SocialMediaMineR documentation built on May 31, 2019, 5:14 p.m.