2
respostas

Erro 400

Tentei seguir as sugestões aqui no fórum, mas sem sucesso. Hoje é dia 21/05/2022 e segue o código

import requests
import os
import json

# To set your enviornment variables in your terminal run the following line:
# export 'BEARER_TOKEN'='<your_bearer_token>'


def auth():
    return os.environ.get("BEARER_TOKEN")


def create_url():
    query = "AluraOnline"  #Aqui se trata da conta que vamos pegar informações
    # Tweet fields are adjustable.
    # Options include:
    # 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,
    # source, text, and withheld
    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 = 2022-14-15T00:00.00Z & end_time = 2022-05-21T00: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()

Vou postar o erro retornado como comentário pelo excesso de caracteres.

2 respostas

Erro retornado

400
Traceback (most recent call last):
  File "recent_search.py", line 53, in <module>
    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":{" end_time ":[" 2022-05-21T00:00.00Z"]},"message":"The query parameter [ end_time ] is not one of [query,start_time,end_time,since_id,until_id,max_results,next_token,pagination_token,sort_order,expansions,tweet.fields,media.fields,poll.fields,place.fields,user.fields]"},{"parameters":{" user.fields ":[" id, name, username, created_at"]},"message":"The query parameter [ user.fields ] is not one of [query,start_time,end_time,since_id,until_id,max_results,next_token,pagination_token,sort_order,expansions,tweet.fields,media.fields,poll.fields,place.fields,user.fields]"},{"parameters":{"expansions ":[" author_id "]},"message":"The query parameter [expansions ] is not one of [query,start_time,end_time,since_id,until_id,max_results,next_token,pagination_token,sort_order,expansions,tweet.fields,media.fields,poll.fields,place.fields,user.fields]"},{"parameters":{"start_time ":[" 2022-14-15T00:00.00Z "]},"message":"The query parameter [start_time ] is not one of [query,start_time,end_time,since_id,until_id,max_results,next_token,pagination_token,sort_order,expansions,tweet.fields,media.fields,poll.fields,place.fields,user.fields]"},{"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"}')

Oi Lucas, estava tendo um problema semelhante, tente tirar os espaços das variáveis, como elas compõem uma URL acredito que colocar os espaços está gerando esse erro. Por exemplo, a variável user_fields deve ser escrita assim:

user_fields = "expansions=author_id&user.fields=id,name,username,created_at"

Espero ter ajudado!

Quer mergulhar em tecnologia e aprendizagem?

Receba a newsletter que o nosso CEO escreve pessoalmente, com insights do mercado de trabalho, ciência e desenvolvimento de software