I need to get url of uploaded photo. I posted it and got post's 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());
}
Now I'd like to get url of this photo. How can I get this url?
