0

緯度と経度のみの写真の投稿を検討しています。私は両方を試しました - bundle.putString("location","\"latitude\":"+latitude+",\"longitude\":"+longitude); - bundle.putString("座標","\"緯度\":"+緯度+",\"経度\":"+経度);

どちらも成功を返しますが、facebook の写真に位置情報は表示されません。

4

1 に答える 1

0

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) {

            }
于 2012-05-17T07:01:33.810 に答える