我在使用oAuth的电子表格中开发了一个google apps脚本。 我现在将相同的脚本复制到在站点上运行的小工具。当我想运行使用oauth的函数时,我收到以下错误:
序列化继续时出现意外异常
当我在网站上运行实际小工具或从脚本编辑器运行该功能时,会发生这种情况。从电子表格中的脚本编辑器调用时,完全相同的代码可以正常工作。 我在做错了什么,或者在使用网站小工具时根本无法使用oAuth和UrlFetchApp.fetch?
谢谢,
扬
以下是我正在尝试做的一些示例代码,您需要包含来自Google Api控制台的真实api机密以进行测试。
function CalendarApiBug( ) {
var oAuthConfig = UrlFetchApp.addOAuthService('agenda scheduler');
oAuthConfig.setRequestTokenUrl("https://www.google.com/accounts/"+
"OAuthGetRequestToken?scope=https://www.googleapis.com/auth/calendar");
oAuthConfig.setAuthorizationUrl("https://www.google.com/accounts/OAuthAuthorizeToken");
oAuthConfig.setAccessTokenUrl("https://www.google.com/accounts/OAuthGetAccessToken");
oAuthConfig.setConsumerKey('replacemewithsomethingreal');
oAuthConfig.setConsumerSecret('replacemewithsomethingreal');
this.baseUrl = 'https://www.googleapis.com/calendar/v3/';
this.calendarsList = null;
this.getBaseUrl = function() {
return this.baseUrl;
} //CalendarApiBug.getBaseUrl
this.getFetchArgs = function() {
return {oAuthServiceName:'agenda scheduler', oAuthUseToken:"always"};
} //CalendarApiBug.getFetchArgs
this.getCalendarList = function(refresh){
if (refresh != true && this.calendarsList != null )
return this.calendarsList;
var fetchArgs = this.getFetchArgs();
fetchArgs.method = 'get';
var url = this.baseUrl + 'users/me/calendarList';
this.calendarsList = Utilities.jsonParse(UrlFetchApp.fetch(url, fetchArgs).getContentText());
return this.calendarsList;
} //CalendarApiBug.getCalendarList
}
function test(){
var api = new CalendarApiBug();
Logger.log(api.getCalendarList(false));
}
答案 0 :(得分:1)
只有在脚本管理器中运行代码时,才会显示oAuth批准对话框。为了将您的Apps脚本代码发布到站点,您需要将该版本的脚本作为服务发布。打开该脚本的代码编辑器,并确保首先使用脚本编辑器运行这些函数。这将验证您的oAuth批准是否已存储。
答案 1 :(得分:0)
为什么在Google Apps脚本中使用Oauth作为日历服务?