如何获取 Facebook PHP sdk 中的用户 ID?

发布于 2024-12-06 21:43:35 字数 666 浏览 0 评论 0 原文

我在解决这个问题时遇到了最困难的时间...我怎样才能获得用户 ID?虽然我意识到这个问题听起来有点迟钝,但我在任何地方都找不到这个!这是我的代码的以下顶部部分:

require '../fb_fc/facebook-php-sdk-9147097/src/facebook.php';
$appId     = 'APP_ID';
$appSecret = 'APP_SECERT';
$userId          = 'USER_ID?????';
$userAccessToken = 'ACCESS_TOKEN';

如何获取用户 ID?我通过使用 $GET_['access_token']; 获取访问令牌,这是 URL:http://friendsconnect.org/example.php?access_token=ACCESS_TOKEN_HERE#access_token=ACCESS_TOKEN_HERE&expires_in=0(这不是有效链接)。我该怎么做?我对此也很陌生,并且乐于接受建议。

I'm having the toughest time figuring this out... how can I get the user ID? While I relize the question sounds a bit retarded, I can't find this anywhere! This is my following top part of my code:

require '../fb_fc/facebook-php-sdk-9147097/src/facebook.php';
$appId     = 'APP_ID';
$appSecret = 'APP_SECERT';
$userId          = 'USER_ID?????';
$userAccessToken = 'ACCESS_TOKEN';

How can I get the user ID? I get the access token by using $GET_['access_token']; and this is the URL : http://friendsconnect.org/example.php?access_token=ACCESS_TOKEN_HERE#access_token=ACCESS_TOKEN_HERE&expires_in=0 (This is not a working link). How can I do this? I'm also new to this and am open to suggestions.

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

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

发布评论

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

评论(1

来自: https://github.com/facebook/php-sdk
获取用户 ID 的最小代码(假设已设置 cookie 或已传入访问令牌)是:

require 'php-sdk/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => 'YOUR_APP_ID',
  'secret' => 'YOUR_APP_SECRET',
));

// Get User ID
$user = $facebook->getUser();

From: https://github.com/facebook/php-sdk
The minimum code to get the user ID (assuming a cookie has been set or the access token already passed in) is:

require 'php-sdk/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => 'YOUR_APP_ID',
  'secret' => 'YOUR_APP_SECRET',
));

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