我的身份验证有问题,我正在执行以下步骤:
1.我第一次通过使用这个站点的 url 获得 oauth_signature,详细信息如下:http: //7digital.github.io/oauth-reference-page/
网址: https ://api.7digital.com/1.2/oauth/requesttoken
消费者密钥: MY_KEY
消费者秘密: MY_SECRET_KEY
随机数: 814629426
* *时间戳: 1383291284
正文编码:** application/json
and them send request to get the oauth_token for the 7digital API: https://api.7digital.com/1.2/oauth/requesttoken?oauth_consumer_key=MY_KEY&oauth_nonce=184615245&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1383144733&oauth_version=1.0&oauth_signature=sJ%2B%2BPq2i9LfC1xGG1EHx2DrTBxg% 3D
此请求获取 oauth_token 和 oauth_token_secret。
2.我需要用客户端密钥授权oauth_token:
https://account.7digital.com/7dysvzdxkkmf/oauth/authorise?oauth_token=7EP6KGD 如果我有一个 7digital 帐户,该请求会响应一个页面来注册或登录。
3.我需要访问令牌:
但在第 3 步我收到错误消息:OAuth 身份验证错误:无效签名。
我的代码有什么问题?