2014-10-06 58 views
0

我目前在R中使用TwitteR軟件包。我可以在未指定地理編碼的情況下獲取鳴叫,但是當我指定地理編碼時,我在下面給出錯誤信息:TwitteR(R的Twitter API) - 指定地理編碼時無法獲取鳴叫

#setup permission using relevant API keys in setup_twitter_oauth 

searchTwitter("dog") #this line works 

searchTwitter("dog", geocode = '40.714997,-73.91623, 10mi') #this line doesn't work 
                  #returns "Error in twInterfaceObj$doAPICall(cmd, params, "GET", ...) : client error: (403) Forbidden" 

我包括地理編碼是在紐約市(我只是選擇了一個人口密度高的地方)。

回答

1

工作對我來說,如果我刪除了地理編碼參數的空間:

searchTwitter("dog", geocode = '40.714997,-73.91623,10mi')