使用 C# SDK 获取 facebook 用户的 "Address" 和 "lives in" 字段
Get "Address" and "lives in" fields of facebook user by using C# SDK
如何使用 C# SDK 获取特定用户的 "Address" 和 "lives in" 字段。
假设他在他的 public 个人资料信息
中公开了此信息
谢谢
查看 Facebook 文档以获取有关用户的信息和示例代码:https://developers.facebook.com/docs/graph-api/reference/v2.2/user
"lives in" 将是 "location" 字段,您需要 user_location
权限。我不认为你可以用 API 得到准确的地址。向用户授予正确权限后,该位置将显示在 /me
端点中。
顺便说一句,是否设置为 public 并不重要。并非 public 中的所有内容都可以使用 API.
访问
如何使用 C# SDK 获取特定用户的 "Address" 和 "lives in" 字段。 假设他在他的 public 个人资料信息
中公开了此信息谢谢
查看 Facebook 文档以获取有关用户的信息和示例代码:https://developers.facebook.com/docs/graph-api/reference/v2.2/user
"lives in" 将是 "location" 字段,您需要 user_location
权限。我不认为你可以用 API 得到准确的地址。向用户授予正确权限后,该位置将显示在 /me
端点中。
顺便说一句,是否设置为 public 并不重要。并非 public 中的所有内容都可以使用 API.
访问