为什么现在 App Access Token 与 AppID|Secret 不同?
在 facebook 文档中,它说我们可以指定:
AppID|Secret
作为应用程序 access_token
但是,当转到 https 时://developers.facebook.com/tools/access_token/ 应用程序令牌是不同的。其形式为 AppID|Randomnumber
我们应该使用哪个? PHP SDK 使用“Secret”版本 - 我们需要调整它吗?
In the facebook docs, it says we can specify:
AppID|Secret
As the application access_token
However, when going to https://developers.facebook.com/tools/access_token/ the App Token is different. This is in the form AppID|Randomnumber
Which should we be using? The PHP SDK uses the 'Secret' version - do we need to adjust this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应用程序令牌不是 APP_ID|APP_SECRET。 FB 文档说应用程序令牌可能是使用 APP_ID 和 APP_SECRET 获得。您可以通过点击以下 URL 来实现此目的:
The app token is not APP_ID|APP_SECRET. The FB docs says that the app token may be obtained using the APP_ID and the APP_SECRET. You can achieve this by hitting this URL:
AppID|AppSecret 可以工作,我在 PHP 之外使用它。这是在访问令牌过期并且您未提示进行离线访问后发布到用户流的唯一方法。他们在该页面上向您显示的 appId|randomnumber 会像常规访问令牌一样过期,其中 appid|appsecret 不会过期。
AppID|AppSecret works and I use it outside of PHP. It is the only way to publish to a users stream after their access token expires and you haven't prompted for offline_access. The appId|randomnumber they show you on that page expire like regular access tokens where appid|appsecret do not expire.