我按照文档说的那样做了 Oauth 流程,得到了 oauth_token 和 oauth_token_secret,然后从我的 nodejs 服务器我尝试了这个请求:
request.get({
headers: {
"User-Agent": "FooBarApp/3.0",
"Authorization": {
oauth_token:"my token",
oauth_token_secret: "my secret token",
"OAuth oauth_consumer_key":"mykey",
"oauth_nonce":Date.now(),
"oauth_signature":"mypass&",
"oauth_signature_method":"PLAINTEXT",
"oauth_timestamp":Date.now(),
"oauth_verifier":"users_verifier"
},
"Content-Type": "application/x-www-form-urlencoded"
},
url: "https://api.discogs.com/oauth/identity"
我还尝试删除“授权”中的所有参数,除了我的两个令牌但没有工作。有什么线索吗?