Facebook 应用程序和 Cookie
使用 FBJS 编写的 Facebook 应用程序是否需要访问 cookie?举例来说,我的应用程序只是将登录用户的朋友获取到一个数组中。
Do facebook applications written with the help of FBJS need access to cookies? Say for example, my application just gets the the friends of logged in user into an array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在那里不需要cookie。您可以将您想要的任何内容存储到会话中(用于临时存储)或使用数据库。在大多数情况下,合乎逻辑的做法是将用户存储到数据库中。
You don't need cookies there. You can store whatever you want into the session (for temporary storage) or use a database instead. The logical move will be to store users into database in most cases.