I am developing an Application at Google App Engine. I am using Cloud Endpoints for the communication between an Android App at my Backend at Google App Engine. The Android client uses Firebase Authentication and sends with every call the Firebase token the Cloud Endpoints.
At Google App Engine I use the following code to verify the Firebase Token. I am using the Firebase Admin SDK 4.0.3
Task<FirebaseToken> authTask = FirebaseAuth.getInstance().verifyIdToken(token);
try {
Tasks.await(authTask);
} catch (ExecutionException | InterruptedException e ) {
log.severe(e.getMessage());
}
FirebaseToken decodedToken = authTask.getResult();
The execution of the Task is running at a Google App Engine Backend Task but unfortunately this Backend instance does not shutdown and so I exceed my free quota limit. So can someone give me a hint how I can shutdown the Backend Instance after Token verfication?
This is a known issue with the Firebase Admin Java SDK and is actually a difficult bug for us to fix. The only workaround for the time being is to use a more recent version of the SDK (>=
4.0.4
) which supports using this method in frontend instances (that shutdown cleanly after processing).Unfortunately, in a separate issue, the
verifyIdToken()
method is broken in the4.1.0
release due to a bad dependency. So, you'll have to use either4.0.4
or >=4.1.1
.Sorry for all the troubles! We will get the
verifyIdToken()
method fixed ASAP. In the meantime, version4.0.4
should work for you.Update
The second, smaller issue with the
verifyIdToken()
method was fixed in version 4.1.1 of the Admin Java SDK.