0

我想使用 Facebook sdk 3 签到一个地方。它应该张贴在墙上作为签到。我有这个地方 id。有没有人知道怎么做和任何代码>>

4

1 回答 1

0
Bundle data = new Bundle();
data.putString("access_token", "YOUR ACCESS TOKEN");
data.putString("place", "your_place_id");  
data.putString("message","Your Text here");
JSONObject coordinates = new JSONObject();
coordinates.put("latitude", "LATITUDE");
coordinates.put("longitude", "LONGITUDE");
data.putString("coordinates",coordinates.toString());
data.putString("tags", "user_id");
String response = faceBook.request("me/checkins", data, "POST");
于 2013-04-17T05:08:12.253 回答