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.

Is there a way to get and set the new cover photo on the Facebook timeline profile via the API?

share|improve this question

4 Answers

up vote 5 down vote accepted

There“s no API support for changing user profile cover, but you can upload a photo and then redirect user to: http://www.facebook.com/profile.php?preview_cover=PHOTO_ID

share|improve this answer
This does not appear to work anymore (at least on the Facebook with the new Graph Search enabled). – derekaug Apr 18 at 15:14

You can get the picture via the regular photo APIs (it's in the 'Cover Photos' album) and also in the cover field of the User object - a sample call being /me?fields=cover to retrieve it

There's no API to set the User cover photo and i'm not aware of any plans to add one.

Pages' cover photos can be edited using the API - see the Pages API documentation for more information - you make a POST request to /PAGE_ID?cover=<ID of a photo in the page's album> with the Page access token

share|improve this answer

There is an api for updating the cover photo on a page

http://developers.facebook.com/docs/reference/api/page/

It asks for a photo id which i guess is the id of a photo from the users album. I am trying to update the photo, though think that first need to update that photo in album to retreive the photo id

share|improve this answer
2  
This is very cool, but doesn't seem to work for profiles. I upload a photo and user the id as the value for cover. FOr a regular user, it returns {"error":{"message":"(#100) Can only call this method on valid test users for your app","type":"OAuthException","code":100}} For a test user it returns true, but the cover photo doesn't change. – Tom Kincaid Mar 26 '12 at 22:56
$user_id = $facebook->getUser();

if($user_id == 0 || $user_id == "")
{
    $login_url = $facebook->getLoginUrl(array(
    'redirect_uri'         => 'http://yoursite.com/upload.php?coverid='xxxxxx',
    'scope'      => "publish_stream,user_photos,user_photo_video_tags,user_videos"));

    echo "<script type='text/javascript'>top.location.href = '$login_url';</script>";
    exit();
}

//get profile album
$albums = $facebook->api("/me/albums");
$album_id = ""; 
foreach($albums["data"] as $item){
    if($item["type"] == "cover_photo"){
        $album_id = $item["id"];
        break;
    }
}

you can test it here FACEBOOK COVERS

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.