Facebook 与会员提供商?
我正在为我的项目使用 Facebook connect,并使用自定义编写的代码来处理身份验证,您是否建议使用会员提供商来处理用户,或者我应该在后端开发一些自定义数据库。
请给出如何以上述任何方式进行操作的提示....
使用自定义数据库更新
我的意思是开发自定义会员资格提供程序
更新
请建议应该是什么自定义会员资格提供商的自定义数据库架构
I am using Facebook connect for my project with custom written code to deal with authentication, Do you suggest using Membership provider to deal with users or should i develop some custom Database in Backend.
Please give a hint on how to do in any of the above ways....
Update
with custom Database i mean Developing a Custom membership Provider
Update
Please suggest what should be the schema of the Custom Database for the custom Membership provider
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会员数据库主要用于存储用户名和密码,绝对不是用于存储 cookie 或会话。我不熟悉 facebook connect 的工作原理,但我猜你甚至无法存储密码。如果您无法管理密码,就没有理由使用 ASP.NET 会员资格。
我的建议是将会员数据库与您自己的数据库概念进行比较,看看是否有任何真正的重叠......我猜没有。
http://superpatrick.wordpress.com/2007/11/21/ aspnet-成员资格架构/
The membership database is primarily for storing usernames and passwords, definitely not for storing cookies or session. I'm not familiar with how facebook connect works, but I'm guessing you can't even store the password. If you can't manage passwords there's no reason use to asp.net membership.
My suggestion is to compare the membership database against your own concept for the database and see if there's any real overlap....I'm guessing there isn't.
http://superpatrick.wordpress.com/2007/11/21/aspnet-membership-schema/