Get list of Page Albums using Facebook PHP SDK v5
问题 I want to use Facebook PHP SDK v5 to get a list of photo albums for a Page. I am following the instructions at https://developers.facebook.com/docs/graph-api/reference/v2.4/page/albums, which are as follows: /* PHP SDK v5.0.0 */ /* make the API call */ $request = new FacebookRequest( $session, 'GET', '/{page-id}/albums' ); $response = $request->execute(); $graphObject = $response->getGraphObject(); /* handle the result */ This does however seem to be incorrect as there is no " execute "