如何在本机移动客户端中使用Facebook客户端令牌

时间:2015-08-07 07:36:18

标签: facebook-graph-api

有人可以向我展示示例或解释如何在本机移动客户端中使用Facebook客户端令牌来发出图谱API请求吗?

1 个答案:

答案 0 :(得分:0)

来自https://developers.facebook.com/docs/places/android

  

Places Graph SDK会在创建新请求时自动选择访问令牌。如果用户访问令牌可用,则将使用它;否则,使用客户端令牌。

     

以下代码示例演示了如何设置客户端令牌。

// Get your client token from the developer portal.
String CLIENT_TOKEN = "{your_client_token}";

FacebookSdk.setClientToken(CLIENT_TOKEN);
// At this point, requests on PlaceManager can be invoked. 
// Users do not have to log in Facebook.