0
有沒有辦法在Google Apps腳本中使用Google suggested queries API?如果答案是否定的,那麼最好的選擇是什麼?我的目標是針對電子表格中值不佳的查詢關鍵字執行拼寫糾正和語義aproximation。如何在Google Apps腳本中使用Google建議的查詢API
有沒有辦法在Google Apps腳本中使用Google suggested queries API?如果答案是否定的,那麼最好的選擇是什麼?我的目標是針對電子表格中值不佳的查詢關鍵字執行拼寫糾正和語義aproximation。如何在Google Apps腳本中使用Google建議的查詢API
您可以使用UrlFetchApp來獲取數據。
var query = "give me suggestions"
var stringResponse = UrlFetchApp.fetch("http://suggestqueries.google.com/complete/search?client=firefox&q=" + encodeURIComponent(query)).getContentText();
var parsedResponse = JSON.parse(stringResponse);
var searchString = parsedResponse[0];
Logger.log("search string: " + searchString);
var suggestions = parsedResponse[1];
for (var i=0; i<suggestions.length; i++) {
Logger.log("Suggestion: " + suggestions[i]);
}