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'm doing some playing with HTTP Posts, and wondered if someone could help me out with the ways to upload a photo to facebook using HTTP Post request. I have an access token, and can access the user's data, including ID, name, etc. But figuring out the uri for the upload is a big confusing.

I'm implementing the code in C#, and most (if not all) online resources are for php.

Any help?

share|improve this question

closed as not a real question by CBroe, Harald Scheirich, Scorpi0, Jaguar, Mike B Jan 2 at 16:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 1 down vote accepted

First, read this:

graph api

You have 2 different ways in your task.

  • Uploading photo to album
  • Posting photo as part of link posting

If you want to upload photo, you need to configure request like this:

https://graph.facebook.com/{USER_ALBUM_ID_IN_WHICH_YOU_WANT_TO_UPLOAD_PHOTO}
/photos?
message={MESSAGE_THAT_YOU_WANT_ADD_TO_PHOTO}&
source={SOURCE_OF_PHOTO}&
place={PLACE_NOT_INTERESTING}&
access_token={YOU_KNOW_ACCESS_TOKEN}

Also, you may have a look at this and this

share|improve this answer
I assume by this I'll need to use a third party to temporarily host the photo? Or will a local source be good enough? – AllFallD0wn Jan 4 at 9:06
it's better to look third party – loldop Jan 4 at 17:00

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