list(message)
is not necessary and is giving the API a body of:
[{"raw": "b64 content..."}]
just do:
...messages().send(body=message, userId='me'...
list(message)
is not necessary and is giving the API a body of:
[{"raw": "b64 content..."}]
just do:
...messages().send(body=message, userId='me'...