Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 facebook graph api 中检索用户的手机号码和邮政编码。我正在使用下面提到的权限。
PERMISSIONS = new String[] {"publish_stream", "offline_access", "user_birthday", "email", "user_location" };
谁能给我一些想法如何检索这两个东西(邮政编码和手机号码)?
首先,您永远无法通过 API 检索 Facebook 用户的手机号码,因为它不会通过任何现有 API 公开。
其次,当您可以使用 fql 查询邮政编码时
select current_location from user where uid=me()
尽管有时 zip 字段可能只是空白。您不需要任何额外的权限。