Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
when you say you "posted it", what exactly do you mean? How did you post it? – Dr.Dredel Jan 26 at 22:48
@Dr.Dredel I posted it using "me/photos" – Yuliya Tarasenko Jan 26 at 23:02

2 Answers

According to @Tomislav's link, using:

https://graph.facebook.com/10150146071831729?access_token=AAAAAAITEghMBAC041bexTcyhRKuLWt7MaXNTy3YydqD3mN6lvrmeZCbxiUQGcgBJ7v3rOrvrlzBuByzGjWZBLOhcafA0IuMXjN9tLlaQZDZD` 

where <10150146071831729> is the ID of the photo you are interested in will return the URL in link in the returned JSON object

Reference: http://developers.facebook.com/docs/reference/api/photo/

share|improve this answer
up vote 0 down vote accepted

I've solved this problem.

1.Neccessary permissions: publish_actions, user_photos, read_stream

2.Get post_id after photo's upload:

postId = graphResponse.getString("post_id");

3.Get posts:

Request mRequest = new Request(session, "me/feed", null,
                HttpMethod.GET, callback);

Find post by id. And get photo's url:

String id = json_obj.getString("id");

if (id.equals(postId)) {

String url = json_obj.getString("picture");

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.