I\'m trying to access the Google Cloud API from an AWS Lambda function but I don\'t know how to authenticate. The auth guide in the Google Cloud documentation (https://cloud.goo
I found how to hard-code the credentials without the need to save them in a JSON file. It was in this documentation here:
https://googlecloudplatform.github.io/google-cloud-node/#/docs/language/0.7.0/guides/authentication
Below is an example that calls the Language API.
var language = require('@google-cloud/language')({
projectId: '',
credentials: {
client_email: '',
private_key: '',
}
});
language.detectEntities('Axel Foley is from Detroit').then(function(data) {
var entities = data[0];
var apiResponse = data[1];
});