跟随某人在R中使用Twitter Rest Api

我正在通过Twitter查看
this文档来关注某人.我已经使用带有api_key,access_token等的twitteR软件包授权该帐户.由于这是一个POST操作,我决定在R中使用httr软件包.文档中提供的示例之一是

07001

因此,只需将user_id更改为我想要关注的帐户的user_id.

library(httr)
POST("https://api.twitter.com/1.1/friendships/create.json?user_id=1401881&follow=true",verbose())

其中1401881是我要遵循的id.

这给了我

-> POST /1.1/friendships/create.json?user_id=1401881&follow=true HTTP/1.1
-> User-Agent: libcurl/7.39.0 r-curl/0.9.1 httr/1.1.0
-> Host: api.twitter.com
-> Accept-Encoding: gzip, deflate
-> Cookie: guest_id=v1%3A146475568975546263
-> Accept: application/json, text/xml, application/xml, */*
-> Content-Length: 0
-> 
<- HTTP/1.1 400 Bad Request
<- content-encoding: gzip
<- content-length: 87
<- content-type: application/json; charset=utf-8
<- date: Wed, 01 Jun 2016 05:15:42 GMT
<- server: tsa_b
<- strict-transport-security: max-age=631138519
<- x-connection-hash: 6abd7db7f4c47058bf9d96e9ae23fb83
<- x-response-time: 5
<- 
Response [https://api.twitter.com/1.1/friendships/create.json? user_id=1401881&follow=true]
Date: 2016-06-01 05:15
Status: 400
Content-Type: application/json; charset=utf-8
Size: 62 B

从响应消息中可以看出,它表示Bad Request,我相信我生成的URL是错误的.我也尝试过

POST("https://api.twitter.com/1.1/friendships/create", verbose(), 
    body = list(user_id = "101311381"), encode = "json")

我尝试了各种其他方式,并尝试谷歌搜索,但无法找到解决方案.任何帮助,将不胜感激.

最佳答案 尝试将oauth_token(从twitteR包生成)添加到POST请求中

library(httr)
POST("https://api.twitter.com/1.1/friendships/create.json?user_id=1401881&follow=true", 
           config(token = oauth_token))
点赞