Reputation: 418
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
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
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/
Advanced Google Services
Even more, you can easily plug-in Advanced Google Services:
https://developers.google.com/appmaker/settings#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
This will redirect you to Google Cloud Console. There you'll be enable services you need.
You can find further steps by following the link:
https://developers.google.com/apps-script/guides/services/external
Upvotes: 2