我是facebook注册插件的新手。我实现了facebook开发者网站上给出的注册表的虚拟代码。但是当我通过这张注册表注册的时候。它提供了离线访问、发送电子邮件、user_about_me的权限。是否可以为此注册表提供任何特定的权限?
<fb:registration redirect-uri="http://developers.facebook.com/tools/echo"
fields='[ {"name":"name"},
{"name":"foo","description":"Type foo","type":"text"},
{"name":"bar","description":"Type bar","type":"text"},
{"name":"facebooker","description":"Pick Paul","type":"select","options":
{"coder":"Paul","pm":"Austin","partners":"Cat"}},
{"name":"check","description":"Check this","type":"checkbox"},
{"name":"date","description":"Dec 16 2010","type":"date"},
{"name":"city","description":"Calgary","type":"typeahead","categories":
["city"]}]'
onvalidate="validate"></fb:registration> 我在facebook registration page中使用的代码
发布于 2011-06-22 23:55:56
fields="name,birthday,gender,location,email" --
<fb:registration
fields="name,birthday,gender,location,email"
redirect-uri="http://developers.facebook.com/tools/echo/"
width="530">
</fb:registration>http://developers.facebook.com/docs/plugins/registration/
和权限列表:http://developers.facebook.com/docs/authentication/permissions/
发布于 2011-07-22 17:30:00
如果您需要超出可用字段的权限,则需要将用户重定向到正确设置了作用域参数的OAuth对话框。
https://stackoverflow.com/questions/6433507
复制相似问题