我需要在Twitter上获得一个朋友列表。
我已经完成了授权,收到了令牌。
在官方https://dev.twitter.com/rest/reference/get/friends/list文档中仅显示请求的基本参数。如何粘贴令牌?我不知道
答案 0 :(得分:1)
必须生成以下参数oauth_signature
接下来,准备标题正文
<body> = "oauth_nonce=" + oauth_nonce + "," +
"oauth_signature_method=" + oauth_signature_method + "," +
"oauth_token=" + urlencode(oauth_token) + "," +
"oauth_timestamp=" + oauth_timestamp + "," +
"oauth_consumer_key=" + oauth_consumer_key + "," +
"oauth_signature=" + urlencode(oauth_signature) + "," +
"oauth_version=" + oauth_version
添加标题
"Authorization: <body>"
并发送请求