Facebook PHP SDK (v.3.1.1) 问题

发布于 2024-12-17 16:32:45 字数 541 浏览 1 评论 0原文

我最近下载了 Facebook PHP SDK 来尝试发布到 Facebook 用户的留言墙上。

我的 Facebook 用户当前已登录,但尚未使用我的应用程序。

$user = $facebook->getUser();
if ($user) {
 // user is logged in

} else {
 // user is not logged in
   $url = $facebook->getLoginUrl(array('next' => 'http://localhost.com/php-sdk/examples/example.php'));
   header("Location: $url");
}

我注意到它会将我重定向到一个页面,要求我登录该应用程序,这有点奇怪,因为这是我第一次看到这种行为,它显示“您正在以用户身份登录 DummyFBApp”底部。每当我尝试使用其他 Facebook 应用程序时,它只询问我访问我的信息、帖子等的权限。

是否可以跳过此“登录”并仅显示是否允许应用程序发布到用户墙的对话框?

I have recently downloaded the Facebook PHP SDK to try and post to a Facebook user's wall.

My Facebook user is currently logged in but has not used my app.

$user = $facebook->getUser();
if ($user) {
 // user is logged in

} else {
 // user is not logged in
   $url = $facebook->getLoginUrl(array('next' => 'http://localhost.com/php-sdk/examples/example.php'));
   header("Location: $url");
}

I've noticed that it redirects me to a page where it requires me to log into the app, which is kinda weird as this is the first time i have seen this behavior, it says "You are logging into DummyFBApp as User" at the bottom. Whenever i try to use other fb apps it only ask me for permissions to access my information, post, etc.

Is it possible to skip this "login" and only show the dialog whether to allow the app to post to the user wall?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我的痛♀有谁懂 2024-12-24 16:32:45

您的是服务器端而不是使用 JS SDK,但无论如何请看一下: Facebook 权限对话框 (JavaScript SDK)

Yours is server side instead of using the JS SDK, but take a look anyway: Facebook permission dialog (JavaScript sdk) .

染墨丶若流云 2024-12-24 16:32:45

很确定这是新的身份验证对话框。设置下应该有一个选项-> Facebook 应用程序设置中的高级功能允许您暂时将其关闭。

Pretty sure that is the new auth dialog. There should be an option under settings -> advanced in the Facebook app setup that allows you to turn it off for the time being.

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