0

我正在尝试使用 Java 通过 REST API 连接到 Twitter。我正在使用 POST 将以下查询参数传递给

https://api.twitter.com/1/statuses/update.json.

include_entities=true
oauth_consumer_key=**********
oauth_consumer_secret=************
oauth_nonce=***********
oauth_signature_method=HMAC-SHA1
oauth_timestamp=1340329822
oauth_token=***************
oauth_version=1.0
status=test msg

连接到 Twitter 的实际过程是什么?首先我需要使用授权请求获取 auth_token,然后发出 update.json 请求?

有什么要求我是我得到的问题

{"error":"Could not authenticate you.","request":"\/1\/statuses\/update.json"}

但我检查了我所有的配置参数(密钥/秘密),它们是正确的。我尝试使用 Twitter4J 连接相同的参数并且工作正常。

当我尝试使用相同的参数从 REST 客户端工具 (http://code.google.com/a/eclipselabs.org/p/restclient-tool/) 调用时,它失败了。

有什么帮助吗?

4

1 回答 1

1

您必须在名为“授权”的标头中传递 oauth_* 参数,而不是与其他 POST 参数一起传递。此处的 Twitter API 文档对此进行了解释:https ://dev.twitter.com/docs/auth/authorizing-request

于 2012-06-30T22:53:45.137 回答