【发布时间】:2023-03-08 09:38:01
【问题描述】:
逻辑在我看来是循环的(尽管我知道我遗漏了一些东西)
我想用这个:
https://dev.twitter.com/docs/auth/pin-based-authorization
但为了使 URL 发送给用户以获取 pin,您需要一个“oauth_token”:
https://dev.twitter.com/docs/api/1/get/oauth/authorize
但要获得“oauth_token”,您需要:
https://dev.twitter.com/docs/api/1/post/oauth/request_token
但在底部显示它需要一个“oauth_signature”
嗯,“oauth_signature”需要一个“oauth_token” (https://dev.twitter.com/docs/auth/creating-signature)你没有,所以不可能得到一个“oauth_token”,因为你需要一个才能得到一个。
我在这里缺少什么?我主要只是想知道如何获取基于 PIN 的授权的初始 url,所以我需要第一个“oauth_token”。
【问题讨论】: