丢失的 ; Google 脚本中的 before 语句

Missing ; before statement in Google Script

它说我失踪了;在 "var api =..." 行的语句之前。 我不确定我还需要做什么。 如果您需要查看脚本的其余部分,请告诉我。我很乐意提交其他所有内容。

function askWolframAlpha_(q, app) {

try {

var api = "http://api.wolframalpha.com/v2/query?podindex=2&format=plaintext&appid=" + 67ULAK-L9R928PL76 + "&input=" + encodeURIComponent(q);
var response = UrlFetchApp.fetch(api, {
  muteHttpException: true
});

// Parse the XML response
if (response.getResponseCode() == 200) {
  var document = XmlService.parse(response.getContentText());
  var root = document.getRootElement();
  if (root.getAttribute("success").getValue() === "true") {
    return root.getChild("pod").getChild("subpod").getChild("plaintext").getText();
  }
}
} catch (f) {}
return false;
}

问题出在下一行中的 67ULAK-L9R928PL76:

var api = "http://api.wolframalpha.com/v2/query?podindex=2&format=plaintext&appid=" + 67ULAK-L9R928PL76 + "&input=" + encodeURIComponent(q);

更改为:

var api = "http://api.wolframalpha.com/v2/query?podindex=2&format=plaintext&appid=67ULAK-L9R928PL76&input=" + encodeURIComponent(q);

或至少:

var api = "http://api.wolframalpha.com/v2/query?podindex=2&format=plaintext&appid=" + "67ULAK-L9R928PL76" + "&input=" + encodeURIComponent(q);