我需要获取上传照片的网址。我发布了它并得到了帖子的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());
}
现在我想获取这张照片的网址。我怎样才能得到这个网址?