почему api tweepy twitter выдает мне ошибку при отправке прямых сообщений?

#python #api #twitter #tweepy #twitterapi-python

#python #api #twitter #tweepy #twitterapi-python

Вопрос:

итак, я работаю над ботом Twitter, чтобы помочь своим клиентам, и я вижу проблему с отправкой прямых сообщений, вот код

 import tweepy  # assign the values accordingly consumer_key='lt;my keysgt;' consumer_secret_key='lt;my keysgt;' access_token='lt;my keysgt;' access_token_secret='lt;my keysgt; '  # authorization of consumer key and consumer secret auth = tweepy.OAuthHandler(consumer_key, consumer_secret_key) # set access to user's access key and access secret auth.set_access_token(access_token, access_token_secret) # calling the api api = tweepy.API(auth) # ID of the recipient recipient_id = "lt;my test accountgt;"  # text to be sent text = "This is a Direct Message."  # sending the direct message direct_message = api.send_direct_message(recipient_id, text)  # printing the text of the sent direct message print(direct_message.message_create['message_data']['text'])  

выходы ведьм

 Traceback (most recent call last):  File "/home/kuro/.config/JetBrains/PyCharmCE2021.3/scratches/scratch_3.py", line 23, in lt;modulegt;  direct_message = api.send_direct_message(recipient_id, text)  File "/home/kuro/PycharmProjects/twitter-project/venv/lib/python3.9/site-packages/tweepy/api.py", line 46, in wrapper  return method(*args, **kwargs)  File "/home/kuro/PycharmProjects/twitter-project/venv/lib/python3.9/site-packages/tweepy/api.py", line 3296, in send_direct_message  return self.request(  File "/home/kuro/PycharmProjects/twitter-project/venv/lib/python3.9/site-packages/tweepy/api.py", line 255, in request  raise BadRequest(resp) tweepy.errors.BadRequest: 400 Bad Request 214 - event.message_create.target.recipient_id: 'gage_852' is not a valid Long  Process finished with exit code 1  

и да, я тоже пытался

 import tweepy  # assign the values accordingly consumer_key='' consumer_secret_key='' access_token='' access_token_secret=''  # authorization of consumer key and consumer secret auth = tweepy.OAuthHandler(consumer_key, consumer_secret_key) # set access to user's access key and access secret auth.set_access_token(access_token, access_token_secret) # calling the api api = tweepy.API(auth) # ID of the recipient recipient_id = ""  # text to be sent text = "This is a Direct Message."  # sending the direct message api.send_direct_message(recipient_id, text)   

ведьма печально выводит то же самое. я пробовал искать в других формах, но, похоже, ни у кого нет такой же проблемы с душой. Дайте мне знать, если вам понадобится дополнительная информация

thanks, Kuro