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 new to Facebook App development. Does Facebook have any prebuilt dialogs so that (with appropriate authentications) I can query a user to select photos? I don't want to have to build such a dialog myself.

share|improve this question
what do you mean by dialoag? – Awais Qarni Feb 1 '11 at 10:14

2 Answers

up vote 1 down vote accepted

The answer to this question as of the time of writing is that there is no such prebuilt dialog.

share|improve this answer

You can get all photos of the user after taking extended permission of user_photos. if you are using login button then you can take extended permission like this

 <fb:login-button perms="user_photos" autologoutlink="true"></fb:login-button>

if you are using php sdk then you can taken extended permission by login url like this

$loginUrl = $facebook->getLoginUrl(
       array(
        'canvas'    => 1,
        'fbconnect' => 0,
        'req_perms' => 'user_photos'
        )
);

after authenticaltion you are having now the access token. From that access token you can get all photos of the user like this

$photos=json_decode(file_get_contents('https://graph.facebook.com/me/photos?access_token='.Your Access Token));
foreach ($photos->data as $friend)
{
?>
<img src="<?=$friend->source?>" width="50" height="50">
<?php    
}

I hopt it will work :P

share|improve this answer
1  
I'm afraid that this is not quite what I'm looking for. I know how to simply download all of the photos. Rather, I want the user to select a few of their photos for me to download and use. I was hoping that there was a Facebook-built photo selection dialog that I could use rather than having to build one of my own. Thanks though. – John Berryman Feb 1 '11 at 14:34

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.