我正在使用Google电子表格创建一个脚本文件,该文件必须处理在我的Google Apps Domain上获取用户信息。我具有管理员权限,并且已启用预配 API。在我的代码中,我试图在Google Apps Domain上查找特定用户(未找到用户)时捕获错误,而是显示一条消息并继续程序的其余部分。我在这里的 try-catch 语句在用户没有错误时有效。但是,当检索用户时出错时,我收到错误:"序列化延续时出现意外异常"。这是我的代码:
function testOfDomainAccess() {
var i=0;
var anArray= ["johhn.smith", "susan.que]; //john smith misspelled
var user;
for (i=0; i < anArray.length; ++i)
{
Logger.log("nThe current user being processed is " + anArray[i]);
try
{
user = UserManager.getUser (anArray [i]);
}
catch (error)
{
Browser.msgBox("Error: " + error.name + "n Check your spreadsheet for misspellings of " + anArray[i] + " and We will continue to the next user.");
user = null;
}
if (user != null) {
//Perform tasks
}
else
Logger.log("User not found in domain. Moving on the next item in the array.");
}
如果有人可以帮助解决这个问题,我将不胜感激。我是Google Apps Script和Provisioning API的新手。谢谢!
它看起来像在 http://code.google.com/p/google-apps-script-issues/issues/detail?id=980 报告相同的错误。
解决方法是将 Browser.msgBox() 调用替换为 Logger.log(),脚本应按预期运行。