Daisy QL
Daisy QL

Reputation: 418

How to connect the App Maker to Google Cloud apis

I am new to the App Maker, just curious, can the App Maker connect to Google Cloud apis, such as Google Speech api? and where should I start with? Thanks!

Upvotes: 1

Views: 782

Answers (2)

James Ferreira
James Ferreira

Reputation: 87

The Google Vision Template at AMU would be a perfect example to start from. You would need to use the Speech URLs, Your API Key and modify the post. This is a working example however to get you going.

Upvotes: 0

Pavel Shkleinik
Pavel Shkleinik

Reputation: 6347

G Suite Services

Some APIs are available out of the box. You can find docs for all of them in Apps Script reference: https://developers.google.com/apps-script/reference/ G Suite Services

Advanced Google Services

Even more, you can easily plug-in Advanced Google Services: https://developers.google.com/appmaker/settings#advanced_google_services Add Advanced Google Services

Other Services

If you need something special... Then you can try to enable that specific API for your Cloud Project and talk to it using oAuth(I'm not 100% sure, never tried it myself). You can access your Cloud Project by viewing you deployment logs: Settings -> Deployments -> Deployment Logs View deployment logs

This will redirect you to Google Cloud Console. There you'll be enable services you need. Cloud Platform

You can find further steps by following the link:

https://developers.google.com/apps-script/guides/services/external

Upvotes: 2

Related Questions