我已经使用json成功获得了用户的全名:
#region获取facebook名称 //公共部门 public static string fbname; 私有静态字符串get_data;
public static string GetUserFBName()
{
FB.API("me?fields=name", Facebook.HttpMethod.GET, UserCallBack);
return fbname;
}
//USER CALLBACK
private static void UserCallBack(FBResult result)
{
if (result.Error != null)
{
get_data = result.Text;
}
else
{
get_data = result.Text;
}
var dict = Json.Deserialize(get_data) as IDictionary;
fbname = dict["name"].ToString();
}
#endregion
现在我从哪里开始获取电子邮件地址?我在许可中添加了以下内容:
FB.Login("email", AuthCallBack);
谢谢!