When authenticating the google apis, I am getting failure from google:
WARNING: Googleapi oauth2 failed: io.vertx.core.impl.NoStackTraceThrowable: Bad Request: {
"error": "invalid_grant",
}
I used the following 3.5.4 vertx api to authenticate:
OAuth2Auth authProvider = GoogleAuth.create(vertx, serviceAccountJson);
I attempted google's suggested change by making a copy of GoogleAuth.create() , and authentication succeeds, but the refresh of the access token seems to failing. I added my own refresh, and i was still getting these failures from the OAuth2Auth Layer:
Any suggestions?
Thanks,
Tim