Thibault Clerc
Thibault Clerc
As written on their [documentation](https://developers.google.com/maps/documentation/places/web-service/text-search#fieldmask), you have to specify `nextPageToken` inside your `X-Goog-FieldMask` header. Example : `X-Goog-FieldMask: places.id,places.shortFormattedAddress,nextPageToken` 
This is due to [this block of code](https://github.com/oauthlib/oauthlib/blob/564d526fdbdc32a936e4b5ddac186c26024f626b/oauthlib/oauth2/rfc6749/parameters.py#L466) inside the official [oauthlib code](https://github.com/oauthlib/oauthlib/tree/564d526fdbdc32a936e4b5ddac186c26024f626b), but their solution is not very flexible as it shuts down all warnings related to scope change.