1
我想在我的流星應用程序中使用AlchemyAPI獲得一段文本的情感。我按照API的建議使用HTTP.call和'POST'來建立服務器到服務器的調用,但是我得到'invalid-api-key'響應。爲什麼在meteorjs中使用HTTP.call時從AlchemyAPI獲得'invlid-api-key'?
var alchemyURL = Meteor.settings.alchemyUrl;
var postData = {
'apikey': Meteor.settings.alchemyUrl,
'text': txt,
'outputMode': 'json'
};
var options = {
data: postData
};
var sentimentData = HTTP.call('POST', alchemyURL, options);
console.log(sentimentData);
我已經發現了答案,因此將其發佈在下面。