緯度と経度のみの写真の投稿を検討しています。私は両方を試しました - bundle.putString("location","\"latitude\":"+latitude+",\"longitude\":"+longitude); - bundle.putString("座標","\"緯度\":"+緯度+",\"経度\":"+経度);
どちらも成功を返しますが、facebook の写真に位置情報は表示されません。
Check this Snippet for Adding Location :
try {
Bundle params = new Bundle();
JSONObject coordinates = new JSONObject();
coordinates.put("latitude", "Your Latitude");
coordinates.put("longitude", "Your Longitude");
params.putString("coordinates", coordinates.toString());
params.putString("Message", "Bla Bla Bla");
// Do your stuffs for Post
} catch (Exception e) {
}