Hemanthkumar Rajan
Hemanthkumar Rajan

Reputation: 109

Google App maker API

I have a requirement to pull and post data to another application. App maker provides URL fetch option to get data from public API's.

I want to access data from a application in my intranet server does app maker provides any option to connect to the outside server.

URL Fetch option is used to consume data, if I need to pass some data is there any option available to do this in app script

Upvotes: 0

Views: 622

Answers (1)

Pavel Shkleinik
Pavel Shkleinik

Reputation: 6347

I have a requirement to pull and post data to another application

If you don't have strong requirements on a way how to pull/post the data you can consider sharing data via database:

Option one: shared database

You can connect App Maker and your other apps to the same Google Cloud SQL database

Option two: direct database connection

Let's say, you have App Maker app connected to Google Cloud SQL database and some internal apps connected to your internal databases. From App Maker side you can connect to your internal databases using JDBC service and you can whitelist your internal apps to connect to your Cloud SQL instance that App Maker app is connected to.

Option three: API way

Upvotes: 1

Related Questions