为什么现在 App Access Token 与 AppID|Secret 不同?

发布于 2024-12-02 14:25:16 字数 317 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦一生花开无言 2024-12-09 14:25:16

应用程序令牌不是 APP_ID|APP_SECRET。 FB 文档说应用程序令牌可能是使用 APP_ID 和 APP_SECRET 获得。您可以通过点击以下 URL 来实现此目的:

https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=APP_SECRET&grant_type=client_credentials

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:

https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=APP_SECRET&grant_type=client_credentials
倾`听者〃 2024-12-09 14:25:16

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文