对于 Facebook IFrame 应用程序,我应该使用什么 session_id ?

发布于 2024-09-28 20:32:06 字数 292 浏览 2 评论 0原文

我正在 Facebook 中开发 IFrame 应用程序。
我使用facebook提供的PHP SDK。我可以登录。 但是,我应该在 PHP 中使用什么会话 id 呢? 我应该使用默认的 PHP 会话 ID(由服务器)吗?或者我应该使用从 facebook SDK 获得的“sig”?

(即 $session = $facebook->getSession() , $session['sig']

我对 PHP SDK 中的 getSession() 感到困惑,以及应该设置什么我的服务器。

I'm working on an IFrame apps in Facebook.
I use the PHP SDK provided in facebook. and I can login.
However, what should I use for session id in PHP?
should I use the default PHP session id (by the server)? or should I use the 'sig' that I got from the facebook SDK?

(i.e. the $session = $facebook->getSession() , $session['sig'] )

I'm confused by the getSession() from that PHP SDK, and what should be set i my server.

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

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

发布评论

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

评论(1

夜未央樱花落 2024-10-05 20:32:06

如果你想做facebook相关的操作那么你必须有从facebook返回的$session id。您无法使用服务器的会话 ID 从 facebook 检索用户信息。 $session_id 从 facebook 返回,表示 facebook 通过应用程序验证该用户。然后所有信息将根据该 $session id 提供。

If you want to do facebook related operation then you have to have $session id returned from facebook. You cannot retrieve user information from facebook with your session id of server. $session_id returned from facebook, means facebook authenticates that user through application. Then all the information will be provided on the basis of that $session id.

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