我已经很好地设置了 facebook 注册,但是隐藏数据有问题。初始文件具有以下字段:
{'name':'name'},
{'name':'email'},
{'name':'location', 'description':'Location', 'type':'hidden'},
{'name':'gender', 'description':'Gender', 'type':'hidden'},
{'name':'birthday', 'description':'Birthday', 'type':'hidden'},
....
但是当处理 signed_request 时,我将隐藏字段设为空,如下所示:
[registration] => Array
(
[name] => Juan Perez
[email] => jual@hotmail.com
[location] =>
[gender] =>
[birthday] =>
[password] => juan2013
[phone] => 65656565
[contacto] => 2
)
知道还需要设置什么吗?