前提・実現したいこと
Twitter APIを使って特定のユーザーのツイートを全て取得しCSVファイルとして保存したいのですが一回取得した後に次に行こうとしてもエラーで進みません。
発生している問題・エラーメッセージ
'parameters': {'next_token': ['7140dibdnow9c7btw3z1m2yl6qfn1s48adgyyr3glunu8']}, 'message': 'The query parameter [next_token] is not one of [id,since_id,until_id,max_results,pagination_token,exclude,start_time,end_time,expansions,tweet.fields,media.fields,poll.fields,place.fields,user.fields]'}], 'title': 'Invalid Request', 'detail': 'One or more parameters to your request was invalid.', 'type': 'https://api.twitter.com/2/problems/invalid-request'
該当のソースコード
Python
1import json 2from mmap import MADV_SEQUENTIAL 3from typing import Text 4import requests 5import os 6import pandas as pd 7d_list=[] 8bear_token=os.environ.get("BEARER_TOKEN") 9headers={"Authorization":f"Bearer {bear_token}"} 10URL="https://api.twitter.com/2/users/1120916713850073088/tweets?tweet.fields=created_at" 11def API_request(url): 12 response=requests.get(url,headers=headers) 13 json_response=response.json() 14 print(json_response) 15 datas=json_response["data"] 16 print(datas) 17 meta=json_response["meta"] 18 make_csv(datas) 19 go_next(meta) 20 21def make_csv(datas): 22 for data in datas: 23 text=data["text"] 24 created_at=data["created_at"] 25 d={ 26 "text":text, 27 "created_at":created_at 28 } 29 d_list.append(d) 30 31def go_next(meta): 32 if meta["next_token"] is not None: 33 url=URL+f"&next_token={meta['next_token']}" 34 print(url) 35 API_request(url) 36API_request(URL) 37df=pd.DataFrame(d_list) 38df.to_csv("twitter.csv")
試したこと
クエリをparamsで渡してもダメでした。
go_next()で作ったurlを踏むと次のように出ます。
headerで渡してると思うのですが、、、
{
"title": "Unsupported Authentication",
"detail": "Authenticating with Unknown is forbidden for this endpoint. Supported authentication types are [OAuth 1.0a User Context, OAuth 2.0 Application-Only, OAuth 2.0 User Context].",
"type": "https://api.twitter.com/2/problems/unsupported-authentication",
"status": 403
}
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー