WebService Connector: Paginating Google API

TERMINATE_IF $response.nextPageToken$ == NULL
$next$ = $response.nextPageToken$
$endpoint.fullUrl$ = $application.baseUrl$ + "/users?maxResults=10&pageToken=" + $next$

works for me. Technically it’s doing the same exact thing but I’m declaring the nextPageToken as a separate variable

Before operation rule shouldn’t be necessary unless Google is also including special characters that cause java errors in the their page token which I haven’t experienced yet

edit: I’m not a 100% sure if nextpagetoken is always included, does your context url also include maxResults=10?