I can share the kotlin code, but for debugging I even use Postman and Curl and still the result of the GET is negative.
For example:
curl -X GET "https://www.googleapis.com/calendar/v3/calendars/${calendar}/events?maxResults=1" \
-H "Authorization: Bearer ${GCtoken}"\
-H "Content-Type: application/json"
this return 200OK response and the calendar info like last updated, but with zero items on it.
I know the access token and calendar are correct, as I can see the update time change when I do a new POST. Still the GET returns empty

