You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google App Engine
Hello,
Unfortunately, URL Fetch is not supported by new runtimes such as Java 11 runtime. To authenticate requests between your applications you will need to implement other methods.
One way to implement authentication between service would be to use IAP (Identity Aware Proxy). Drawback of this approach is that you need to enable it for all App Engine modules in the project, so I would recommend splitting public and private services to use it. Then you could authenticate as default app engine service account from another app engine service using this code snippet.
Instead of enabling IAP you could validate the same Id tokens on the application using GoogleIdTokenVerifier.