google / php-photoslibrary

PHP client library for the Google Photos Library API
http://developers.google.com/photos
Apache License 2.0
90 stars 32 forks source link

Can't get next page token from response #16

Closed netdown closed 5 years ago

netdown commented 5 years ago

Hi, When making a call to searchMediaItems, the response object does not contain the methods of SearchMediaItemsResponse, only PagedListResponse, therefore I am unable to retrieve the next page token.

$photosLibraryClient = new PhotosLibraryClient(['credentials' => $credentials]); $response = $photosLibraryClient->searchMediaItems(['pageSize' => 50]);

$response->getNextPageToken() is undefined

netdown commented 5 years ago

Ok, I got it. $response->getPage()->getNextPageToken()