我想使用 Tweepy 或 Twython 创建欢迎消息,但它总是返回:
twython.exceptions.TwythonError: An error occurred processing your request.
或 422。
我不喜欢只问一个特定的问题,但这是我的代码:
api = twython.Twython(CONSUMER_KEY, CONSUMER_SECRET,
ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
print(api.post("/direct_messages/welcome_messages/new", params={
"name": "helloworld",
"message_data": {
"text": "Hello World"
}
}))
我尝试了其他方法,例如使用
"welcome_message": {
"name": "helloworld",
"message_data": {
"text": "Hello World"
}
}
代替
"name": "helloworld",
"message_data": {
"text": "Hello World"
}
但没有任何效果。我确实在 Github (https://github.com/tweepy/tweepy/issues/1310) 上发现了一个未解决的问题,但它没有包含任何有用的信息。 提前致谢!