Facebook 应用程序-未捕获的 OAuthException:

发布于 2024-12-28 09:53:59 字数 684 浏览 0 评论 0原文

我的应用程序工作正常,但有一个问题。当有人尝试使用我的应用程序时,他/她会收到此错误。另一个问题是在允许应用程序后它不会重定向到任何地方,您必须重新加载页面。允许并刷新后,您可以使用应用程序。

我的允许代码:fb:login-button perms="email,user_birthday,status_update,publish_stream,offline_access">

您可以检查我的应用程序页面:https://apps.facebook.com/denemeapicik/

错误:

未捕获OAuthException:验证访问令牌时出错:用户 1000abc 尚未授权应用程序 144171878989963。在第 560 行的 /home/xyzz/facebook.php 中

抛出尝试这个,但它不起作用:

$params = array(
'scope' => 'read_stream, friends_likes',
'redirect_uri' => 'https://www.myapp.com/post_login_page'
);

$loginUrl = $facebook->getLoginUrl($params);

my aplication is work fine but there is one problem. when someone try to use my application he/she gets this error. other problem is after allowing the app it doesnt redirect anywhere, you have to resresf page. after allow and refreshing you can use app.

my allow code: fb:login-button perms="email,user_birthday,status_update,publish_stream,offline_access">

you can check my app page: https://apps.facebook.com/denemeapicik/

error:

Uncaught OAuthException: Error validating access token: User 1000abc has not authorized application 144171878989963. thrown in /home/xyzz/facebook.php on line 560

ı try this but it doesnt work:

$params = array(
'scope' => 'read_stream, friends_likes',
'redirect_uri' => 'https://www.myapp.com/post_login_page'
);

$loginUrl = $facebook->getLoginUrl($params);

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

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

发布评论

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

评论(1

忘你却要生生世世 2025-01-04 09:53:59
require_once("facebook.php");
$facebook = new Facebook(array(
    'appId'  => '***',
    'secret' => '***',
  'scope'  => 'manage_pages,offline_access,publish_stream,user_photos'
));

$user = $facebook->getUser();

if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    $user = null;
  }
}

if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl();
}
require_once("facebook.php");
$facebook = new Facebook(array(
    'appId'  => '***',
    'secret' => '***',
  'scope'  => 'manage_pages,offline_access,publish_stream,user_photos'
));

$user = $facebook->getUser();

if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    $user = null;
  }
}

if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文