Skip to content

Commit

Permalink
Merge pull request #191 from MoisesFagundes/master
Browse files Browse the repository at this point in the history
SearchPage function returns empty (Solved)
  • Loading branch information
pablobarbera authored May 22, 2020
2 parents 841f6f4 + 53c4f7d commit 71d934d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rfacebook/R/searchPages.R
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ searchPages <- function(string, token, n=200)
if (length(string)>1){ string <- paste(string, collapse=" ") }

url <- paste("https://graph.facebook.com/search?q=", string,
"&type=page&limit=", sep="")
"&type=place&limit=", sep="")
if (n<=200){
url <- paste(url, n, sep="")
}
Expand Down

0 comments on commit 71d934d

Please sign in to comment.