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.
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.
|
|
The answer to this question as of the time of writing is that there is no such prebuilt dialog. |
|||
|
|
|
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 |
|||||
|