我正在使用Neilcrookes对CakePHP HttpSocket的OAuth扩展(http://www.neilcrookes.com/2010/04/12/cakephp-oauth-extension-to-httpsocket/)
我的请求如下:
Array (
[method] => POST
[uri] => Array (
[host] => api.twitter.com
[path] => 1/statuses/update.json
)
[auth] => Array (
[method] => OAuth
[oauth_token] => xxx
[oauth_token_secret] => xxx
[oauth_consumer_key] => xxx
[oauth_consumer_secret] => xxx
)
[body] => Array (
[status] => Hello World
)
)
我有来自用户先前请求的oauth_token和oauth_token_secret
回复看起来像{“request”:”\/1\/statuses\/update.json”,”error”:”Incorrect signature”}
先谢谢
答案 0 :(得分:0)
只是一个疯狂的猜测:但是你的签名不正确吗?