How get large size album pictures of facebook? -


i using facebook graph api, using login user, user allow permission user_photos , graph api getting list of albums, list of pictures album id, pictures of thumbnail size 130x130. please give code hint large image of album's upload pictures.

following code using access albums , pictures

$albums = $fb->get('/me/albums', $accesstoken)->getgraphedge()->asarray(); foreach( $albums $album_id => $album_data ){     $fbpictures = $fb->get("/".$album_data['id']."/photos?fields=picture&limit=12&type=normal", $accesstoken)->getgraphedge()->asarray(); } 

$fbpictures variable getting arrays of pictures of album, has picture id , url of small thumbnail, can't access large size image. please guide me how possible?

thanks lot


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -