我跟着https://dev.twitter.com/web/sign-in/implementing,我成功获得了访问令牌。现在我知道我需要向https://api.twitter.com/1.1/account/verify_credentials.json发送获取请求以获取用户详细信息,但是我没有得到如何以及在哪里放置令牌。
我尝试将授权标头添加为
OAuth
oauth_consumer_key = “ oauth_consumer_key ”,
oauth_signature_method = “ oauth_signature_method ”,
oauth_timestamp =“1527943990”,oauth_nonce =“RicCiR6KbNa”,oauth_version =“1.0”,
oauth_signature = “siKIF%2FMTFKCYokEsI7qBJrrHZHs%3D”,
oauth_token =“访问令牌”,
oauth_token_secret = “ oauth_token_secret ”
但它给出了
{
"errors": [
{
"code": 32,
"message": "Could not authenticate you."
}
]
}