Calling AppEngine from Firebase

I could not find any resource on how to call the App Engine service with Firebase Function
I know that I can call it by the URL, but in this case it will be an external call and it will charge you a fee.

In addition, in each video they talk about the possibility of accessing the Google APIs. I didn’t understand this well or is there an API request for App Engine?

Thanks!

+5
source share
1 answer

You cannot access the App Engine service internally through the private network of your Google Cloud Project. Only certain products are interconnected in your virtual private cloud, as indicated here .

The API for App Engine can have two meanings:

  • Google App Engine APIs - This allows you to programmatically manage App Engine deployments using the REST API service. All interactions available through the console (web browser), and possibly more, are available through these API endpoints. The Google API Explorer is a tool that combines all the available API endpoints for Google services.

  • You can enable your own API endpoints for the services that have been deployed in your Engine application - this time it is you who determines what the actual endpoints will be and how requests for these endpoints are handled (for example, by your App Engine application). These are still external calls between Firebase and App Engine. They will go through the Internet.

+1
source

Source: https://habr.com/ru/post/1266178/


All Articles