답변

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 ("me/checkins", data, "POST"); sdk 3에는 없지만이 버블로 벽 포스트 메서드를 사용할 수 있습니다. –