我正在使用 iframe 为我的网站实现 Facebook 注册页面,如下所示:
<iframe src="https://www.facebook.com/plugins/registration?
client_id=<%= FACEBOOK_CONFIG['app_id'].to_s %>&
redirect_uri=<%= FULL_ROOT.to_s %>&
fields=name,first_name,last_name,gender,email"
scrolling="auto"
frameborder="no"
style="border:none"
allowTransparency="true"
width="100%"
height="100%"
data-scope="email">
</iframe>
我正在使用导轨。
当用户点击注册时,他被重定向到正确的页面,除非我包括他的电子邮件和生日,在这种情况下我得到:
Request URL:https://www.facebook.com/ajax/connect/registration_widget.php
Request Method:POST
Status Code:500 OK
Request Headersview source
:host:www.facebook.com
:method:POST
:path:/ajax/connect/registration_widget.php
:scheme:https
:version:HTTP/1.1
accept:*/*
accept-encoding:gzip,deflate,sdch
accept-language:en-US,en;q=0.8
content-length:758
content-type:application/x-www-form-urlencoded
etc.
显然,这与用户的生日和电子邮件不属于他的公开资料的事实有关。
我尝试请求这些权限(将它们添加到我在 Facebook 上的应用设置中)但没有任何效果。
我需要解决这个问题:我如何注册用户,包括他的电子邮件和生日?
谢谢!