会议插件中发生的错误。用法示例:
var conferenceError = ConferenceDataService.newConferenceError() .setConferenceErrorType(ConferenceErrorType.PERMANENT);
var state = ScriptApp.newStateToken() .withMethod('myLoginCallbackFunction'); .withTimeout(3600) .createToken(); var authenticationUrl = 'https://script.google.com/a/google.com/d/' + ScriptApp.getScriptId() + '/usercallback?state=' + state; var conferenceError = ConferenceDataService.newConferenceError() .setConferenceErrorType(ConferenceDataService.ConferenceErrorType.AUTHENTICATION) .setAuthenticationUrl(authenticationUrl);
方法
方法 | 返回类型 | 简介 |
---|---|---|
setAuthenticationUrl(authenticationUrl) | ConferenceError | 如果错误类型为 AUTHENTICATION ,该插件必须
提供可回调至插件的网址,以允许用户登录。 |
setConferenceErrorType(conferenceErrorType) | ConferenceError | 设置此 ConferenceError 的错误类型。 |
详细文档
setAuthenticationUrl(authenticationUrl)
如果错误类型为 AUTHENTICATION
,该插件必须
提供可回调至插件的网址,以允许用户登录。使用
该字段为 1800 个字符。
参数
名称 | 类型 | 说明 |
---|---|---|
authenticationUrl | String | 要设置的身份验证网址。 |
返回
ConferenceError
- 此对象,用于链接
抛出
Error
- 如果提供的网址不是有效的 http/https 网址或太过
长。
setConferenceErrorType(conferenceErrorType)
设置此 ConferenceError
的错误类型。
参数
名称 | 类型 | 说明 |
---|---|---|
conferenceErrorType | ConferenceErrorType | 要设置的错误类型。 |
返回
ConferenceError
- 此对象,用于链接