回答

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"); 
+0

是的,謝謝它的工作,但faceBook.request(「我/ checkins」,數據,「POST」);不在sdk 3中,但是我們可以用這個budle使用wall post方法 –

相關問題