會議通訊外掛程式發生錯誤。使用方式範例:
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
:這個物件,用於鏈結