gpt4 book ai didi

r - 在 R 中关注使用 twitter Rest Api 的人

转载 作者:行者123 更新时间:2023-12-04 21:09:34 25 4
gpt4 key购买 nike

我正在浏览 this来自 Twitter 的文档以关注某人。我已经使用 twitteR 包与 api_keyaccess_token 等授权了帐户。因为这是一个 POST 操作我决定在 R 中使用 httr 包。文档中提供的示例之一是

https://api.twitter.com/1.1/friendships/create.json?user_id=1401881&follow=true

相应地,只需将 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))

关于r - 在 R 中关注使用 twitter Rest Api 的人,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37560164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com