Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想代表用户访问 twitter API。
我对 Twitter 访问令牌的使用有点困惑。当我与非常易于集成的 Github API 进行比较时,我将accessToken它简单地作为access_token每个 HTTP 请求的查询参数。
accessToken
access_token
使用 github 我有访问令牌(来自测试应用程序),但我想知道它实际上应该去哪里 - 查询字符串,标题?
如果有人澄清会很高兴。
它应该放在Authorization标题中,前面有“Bearer”(和一个空格)这个词。
Authorization
例如在 Android / JavaHttpGet调用中:
HttpGet
httpGet.setHeader("Authorization", "Bearer " + access_token);