在一个项目中,我为不同的提供者多次使用身份验证,所以我依赖于标准库。
我想与 Facebook 建立联系,但它提供的授权并不完全标准。
为了测试连接,我在授权部分使用REST 控制台,我放置了一个密钥和秘密
Authorize URL
我提供https://graph.facebook.com/oauth/authorize
Access token URL
-https://graph.facebook.com/oauth/access_token
- 请求令牌 URL 我留空或填写
https://graph.facebook.com/
我得到的 bck 看起来像这样:
{
"error": {
"message": "Expected 1 '.' in the input between the postcard and the payload",
"type": "OAuthException",
"code": 1
}
}
所以我的问题是如何获得认证形成标准 OAuth 调用?
编辑
目前(测试阶段)我发现可以使用不使用标准身份验证但access_token
具有适当值的方式检索数据。然而,使用请求 url 中公开的 api 密钥和秘密发送 http 请求并不是正确的方法。