アップロードした写真のURLを取得する必要があります。私はそれを投稿し、投稿のIDを取得しました:
JSONObject graphResponse = response.getGraphObject()
.getInnerJSONObject();
String postId = null;
try {
postId = graphResponse.getString("id");
}
catch (JSONException e) {
Log.i("Facebook Error", "JSON error " + e.getMessage());
}
この写真のURLを取得したいと思います。このURLを取得するにはどうすればよいですか?