Facebook PHP-SDK 使用 $_COOKIE 代替 $_SESSION 是否有原因?
此问题与以下问题相关:
This question is related with the following issue:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
此问题与以下问题相关:
This question is related with the following issue:
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
会话仅适用于您的服务器。您可以使用 $_SESSION 变量仅在服务器中存储数据。但是,当您使用 facebook 执行身份验证时,他们无法在服务器的 $_SESSION 变量中设置任何变量,因此他们使用 cookie 将数据存储在浏览器上,您的脚本可以从其中选择数据。
Session works for your server only. You can use $_SESSION variable just to store data within your server. But as when you perform authentication with facebook they can not set any variable in your server's $_SESSION variable so they use cookies to store data on browser from where your script can pick it.