除了会话之外,我应该在 mvc 中的哪里保存 accesstoken
众所周知,MVC 的一大优点是无状态。
但是,如果不使用会话,我应该在哪里保存来自 facebook 的 accesstoken。 因为我希望用户能够将 feed 发布到他们的墙上,这需要 accesstoken 进行身份验证。
有什么我可以遵循的最佳实践吗?
谢谢
As we all know one big advantage of MVC is stateless.
However if not using session, where should I save my accesstoken from facebook.
since i want user to be able to post feed to their wall, which requires accesstoken for authentication.
Is there any best practice that i can follow?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终通过要求用户 facebook 扩展权限将 fb accessToken 保存在我的数据库中: offline_access
我不知道如何删除问题,所以我把我的解决方案放在这里。
I end up save fb accessToken in my database by requiring user facebook extended permission: offline_access
I dont know how to delete the question, so I put my solution up here.
请参阅 此网站。
我对代码进行了一些更改,总结如下:
请参阅代码此处。
See the StoreFacebookAuthToken method in this site.
I changed the code a bit and summarizing looked like this:
See the code here.