Class ConferenceError

שגיאה

שגיאה שהתרחשה בתוסף לשיחות ועידה. דוגמה לשימוש:

const conferenceError =
    ConferenceDataService.newConferenceError().setConferenceErrorType(
        ConferenceDataService.ConferenceErrorType.PERMANENT,
    );
דוגמה עם אימות:
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);

Methods

שיטהסוג הערך המוחזרתיאור קצר
setAuthenticationUrl(authenticationUrl)ConferenceErrorאם סוג השגיאה הוא AUTHENTICATION, התוסף צריך לספק כתובת URL שמפעילה חזרה את התוסף כדי לאפשר למשתמשים להתחבר.
setConferenceErrorType(conferenceErrorType)ConferenceErrorהגדרת סוג השגיאה של ConferenceError הזה.

מסמכים מפורטים

setAuthenticationUrl(authenticationUrl)

אם סוג השגיאה הוא AUTHENTICATION, התוסף צריך לספק כתובת URL שמפעילה חזרה את התוסף כדי לאפשר למשתמשים להתחבר. האורך המקסימלי של השדה הזה הוא 1,800 תווים.

פרמטרים

שםסוגתיאור
authenticationUrlStringכתובת ה-URL לאימות שרוצים להגדיר.

חזרה

ConferenceError – האובייקט הזה, לצורך שרשור

זריקות

Error – אם כתובת ה-URL שצוינה היא לא כתובת http/‏https חוקית או שהיא ארוכה מדי.


setConferenceErrorType(conferenceErrorType)

הגדרת סוג השגיאה של ConferenceError הזה.

פרמטרים

שםסוגתיאור
conferenceErrorTypeConferenceErrorTypeסוג השגיאה שרוצים להגדיר.

חזרה

ConferenceError – האובייקט הזה, לצורך שרשור