This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Get sentiment from Google Cloud Natural Language API | |
*/ | |
var getSentiment = function(text) { | |
var apiKey = PropertiesService.getScriptProperties().getProperty("apiKey") | |
var url = "https://language.googleapis.com/v1/documents:analyzeSentiment?key=%KEY".replace("%KEY", apiKey) | |
var data = { | |
document: { | |
language: "en-us", |
OlderNewer