This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
@google-cloud/translate v0.5.0
Features
OAuth now supported!
This release now allows for users to authenticate via OAuth. Authentication via API key still works, so if you're not interested in this update, feel free to move along.
Before
var translate = require('@google-cloud/translate')({
key: 'API_KEY',
});
After
var translate = require('@google-cloud/translate')({
projectId: 'grape-spaceship-123',
keyFilename: '/path/to/keyfile.json',
});