对于 Facebook IFrame 应用程序,我应该使用什么 session_id ?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想做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.