Facebook-Connect 用户更改 Facebook 上的电子邮件地址?
我们正在实施 Facebook 连接机制,以允许用户注册我们的系统。我们在注册时会收到他们的电子邮件地址和其他详细信息。
当 FB 用户更改其 Facebook 本身的电子邮件地址并随后登录我们的系统时,我不确定如何处理这种情况。我认为我们没有一种机制可以检测到这一点(或者 Facebook 可以通知我们)。
我该如何解决这种情况?
We're implementing a Facebook-connect mechanism to allow users to sign up into our system. We receive their email address and other details at sign up.
I'm not sure how to handle the scenario when the FB-user changes his email address at Facebook itself and subsequently logs into our system. I dont think there is a mechanism for us to detect that (or for facebook to notify us).
How do I resolve this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在数据库中创建一个表来保存 FB 用户 ID 和电子邮件地址,并在需要引用该用户的任何地方使用 FB ID 作为外键。然后,在一些常规事件中,例如当用户登录、下订单或更新其个人资料等时,从 Facebook 个人资料获取电子邮件并更新表。
Create a table in your database that holds the FB userId, and the email address and use the FB id as a foreign key anywhere where you need to refer to that user. Then, at some regular event like when the user logs in, places an order, or updates their profile, etc., get the email from the facebook profile and update the table.