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 looking for a user.setImage call or something to that effect on the Facebook API but I can't see anything to achieve this: specifically to overwrite a user's profile image (not just post an image on their wall).

I can't see anything in the docs. Do you know if this is possible and if so any docs on implementating it?

share|improve this question
1  
This is a duplicate of How to set a Facebook profile picture using the Graph API, answered by Fredrik – Owen Blacker Jul 13 '11 at 16:11

5 Answers

you can redirect the user to the following link where [PID] stands for the id of the desired picture

http://www.facebook.com/photo.php?fbid=[PID]&makeprofile=1

on this page the user will see the picture and immediately be prompted with a dialog if he wants to set it as his profile picture

share|improve this answer
great answer!!! i have 2 questions now: is there any posibility to avoid the cut-out-process (another parameter?) and do you have such a link for the title picture fanpages? – Joerg May 14 '12 at 16:15
2  
as far as i know there is no way to skip the cut-out-process. you should be able to change the cover photo of a page, just take a look at the documentation developers.facebook.com/docs/reference/api/page (search for "Setting a Cover Photo") - i didn't try it though. – Hannes May 31 '12 at 10:43

No, you cannot.

From the photos.Upload documentation:

However, you cannot upload to a user's profile picture album.

share|improve this answer

Checkout my answer in this thread: how to set a facebook profile picture using the graph api

You can't set the profile picture, but you can upload it to an album, and then send the user to the "make profile picture"-page for that picture.

share|improve this answer
If the question is a duplicate, you should add a link to the original in the comments section of the question. – Evan Kroske Jun 11 '11 at 0:15
Makes sense! Will do that next time! – fredrik Jun 11 '11 at 12:34

There must be an hidden API because the iphone facebook app does it... Maybe you can discover how by setting a proxy between an iphone and Facebook and decypher it... or the API may be restricted to only Facebook's own apps...

share|improve this answer
2  
The iPhone app authenticates with the users email & password, not via the Graph API. – nathan.f77 Apr 26 '11 at 9:50

-Use Graph API


get profile picturs albumId

POST https://api.facebook.com/method/fql.query

■ prams ・key query ・value "select aid from album where owner = @userId and name = /"Profile Pictures/""


upload phot profile pictures

POST https://graph.facebook.com/me/photos

■ prams ・key source ・value binary requestbody ・key aid ・value get FQL Query Result aid ・key uid ・value @userid


but I can't select upload file :D

share|improve this answer
does this work? – Andrei Jan 7 '12 at 18:54

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.