Postmanを使ってAPIを叩いたところ
単一のユーザーの場合のツイートは問題なく取得できるのですが
複数ユーザーを指定すると "code": 32,"message": "Could not authenticate you."
と出ます。
URLはパーセントエンコードしています。
(&→%2C)
取得したいツイートのuser_name
・aaa123
・xxx0000
になります。
複数ユーザーのツイート一覧を取得したいです。
よろしくお願いします。
// 失敗 https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=aaa123%2Cxxx0000&count=10&exclude_replies=false&contributor_details=false&include_rts=true
// 成功 https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=aaa123&count=10&exclude_replies=false&contributor_details=false&include_rts=true
{ "errors": [ { "code": 32, "message": "Could not authenticate you." } ] }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/27 05:59