Estou com o seguinte codigo:
import requests
import os
import json
def auth():
return os.environ.get("BEARER_TOKEN")
def create_url():
query = "AluraOnline"
tweet_fields = "tweet.fields=author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"
user_fields = "expansions=author_id&user.fields=id,name,username,created_at"
filters = "start_time=2021-07-12T00:00:00.00Z&end_time=2021-07-17T00:00:00.00Z"
url = "https://api.twitter.com/2/tweets/search/recent?query={}&{}&{}&{}".format(
query, tweet_fields, user_fields, filters
)
return url
def create_headers(bearer_token):
headers = {"Authorization": "Bearer {}".format(bearer_token)}
return headers
def connect_to_endpoint(url, headers):
response = requests.request("GET", url, headers=headers)
print(response.status_code)
if response.status_code != 200:
raise Exception(response.status_code, response.text)
return response.json()
def main():
bearer_token = auth()
url = create_url()
headers = create_headers(bearer_token)
json_response = connect_to_endpoint(url, headers)
print(json.dumps(json_response, indent=4, sort_keys=True))
if __name__ == "__main__":
main()
Executei-o da seguinte forma no terminal:
-cd datapipeline -export BEARER_TOKEN=AAAAAAAAAAAAAAAAAAAAAG5FQwEAAAAAqBsMmNKyVUNnzMDLu3dPmkUCpLQ%3DOlbsshWzyUmxuxPzXRo9EYA4l8iXWcwKfaa16LJTnuP4yeHS06 -python3 recent_search.py
Obtive o erro:
400
Traceback (most recent call last):
File "recent_search.py", line 53, in
main()
File "recent_search.py", line 48, in main
json_response = connect_to_endpoint(url, headers)
File "recent_search.py", line 40, in connect_to_endpoint
raise Exception(response.status_code, response.text)
Exception: (400, '{"errors":[{"parameters":{"tweet.fields":["author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"]},"message":"The tweet.fields
query parameter value [ conversation_id] is not one of [attachments,author_id,context_annotations,conversation_id,created_at,entities,geo,id,in_reply_to_user_id,lang,non_public_metrics,organic_metrics,possibly_sensitive,promoted_metrics,public_metrics,referenced_tweets,reply_settings,source,text,withheld]"},{"parameters":{"tweet.fields":["author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"]},"message":"The tweet.fields
query parameter value [ created_at] is not one of [attachments,author_id,context_annotations,conversation_id,created_at,entities,geo,id,in_reply_to_user_id,lang,non_public_metrics,organic_metrics,possibly_sensitive,promoted_metrics,public_metrics,referenced_tweets,reply_settings,source,text,withheld]"},{"parameters":{"tweet.fields":["author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"]},"message":"The tweet.fields
query parameter value [ id] is not one of [attachments,author_id,context_annotations,conversation_id,created_at,entities,geo,id,in_reply_to_user_id,lang,non_public_metrics,organic_metrics,possibly_sensitive,promoted_metrics,public_metrics,referenced_tweets,reply_settings,source,text,withheld]"},{"parameters":{"tweet.fields":["author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"]},"message":"The tweet.fields
query parameter value [ in_reply_to_user_id] is not one of [attachments,author_id,context_annotations,conversation_id,created_at,entities,geo,id,in_reply_to_user_id,lang,non_public_metrics,organic_metrics,possibly_sensitive,promoted_metrics,public_metrics,referenced_tweets,reply_settings,source,text,withheld]"},{"parameters":{"tweet.fields":["author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"]},"message":"The tweet.fields
query parameter value [ public_metrics] is not one of [attachments,author_id,context_annotations,conversation_id,created_at,entities,geo,id,in_reply_to_user_id,lang,non_public_metrics,organic_metrics,possibly_sensitive,promoted_metrics,public_metrics,referenced_tweets,reply_settings,source,text,withheld]"},{"parameters":{"tweet.fields":["author_id, conversation_id, created_at, id, in_reply_to_user_id, public_metrics, text"]},"message":"The tweet.fields
query parameter value [ text] is not one of [attachments,author_id,context_annotations,conversation_id,created_at,entities,geo,id,in_reply_to_user_id,lang,non_public_metrics,organic_metrics,possibly_sensitive,promoted_metrics,public_metrics,referenced_tweets,reply_settings,source,text,withheld]"}],"title":"Invalid Request","detail":"One or more parameters to your request was invalid.","type":"https://api.twitter.com/2/problems/invalid-request"}')