Class ConferenceError

Lỗi trong cuộc họp

Lỗi xảy ra trong tiện ích bổ sung hội nghị. Ví dụ về cách sử dụng:

const conferenceError =
    ConferenceDataService.newConferenceError().setConferenceErrorType(
        ConferenceDataService.ConferenceErrorType.PERMANENT,
    );
Ví dụ về xác thực:
const state = ScriptApp.newStateToken()
                  .withMethod('myLoginCallbackFunction')
                  .withTimeout(3600)
                  .createToken();

const authenticationUrl = `https://script.google.com/a/google.com/d/${
    ScriptApp.getScriptId()}/usercallback?state=${state}`;

const conferenceError =
    ConferenceDataService.newConferenceError()
        .setConferenceErrorType(
            ConferenceDataService.ConferenceErrorType.AUTHENTICATION,
            )
        .setAuthenticationUrl(authenticationUrl);

Phương thức

Phương thứcLoại dữ liệu trả vềMô tả ngắn
setAuthenticationUrl(authenticationUrl)ConferenceErrorNếu loại lỗi là AUTHENTICATION, thì tiện ích bổ sung phải cung cấp một URL gọi lại vào tiện ích bổ sung để cho phép người dùng đăng nhập.
setConferenceErrorType(conferenceErrorType)ConferenceErrorĐặt loại lỗi của ConferenceError này.

Tài liệu chi tiết

setAuthenticationUrl(authenticationUrl)

Nếu loại lỗi là AUTHENTICATION, thì tiện ích bổ sung phải cung cấp một URL gọi lại vào tiện ích bổ sung để cho phép người dùng đăng nhập. Độ dài tối đa của trường này là 1800 ký tự.

Tham số

TênLoạiMô tả
authenticationUrlStringURL xác thực cần thiết lập.

Cầu thủ trả bóng

ConferenceError – đối tượng này, để tạo chuỗi

Gửi

Error – nếu URL được cung cấp không phải là URL http/https hợp lệ hoặc quá dài.


setConferenceErrorType(conferenceErrorType)

Đặt loại lỗi của ConferenceError này.

Tham số

TênLoạiMô tả
conferenceErrorTypeConferenceErrorTypeLoại lỗi cần đặt.

Cầu thủ trả bóng

ConferenceError – đối tượng này, để tạo chuỗi