第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

msal typescript error 屬性'accessToken'在類型'void

msal typescript error 屬性'accessToken'在類型'void

瀟湘沐 2022-09-02 20:56:41
下面的代碼為 生成以下 TypeScript 錯(cuò)誤:response.accessTokenTS2339:屬性“accessToken”在類型“void |上不存在TokenResponse'.import * as Msal from '@azure/msal-browser'export async function getTokenPopup(request: Msal.TokenExchangeParameters) {  return await auth.acquireTokenSilent(request).catch(async () => {    return await auth.acquireTokenPopup(request).catch((error) => {      console.log('login with popup failed: ', error)    })  })}const getGraphDetails = async (  uri: string,  scopes: Msal.TokenExchangeParameters,  axiosConfig?: AxiosRequestConfig) => {  return getTokenPopup(scopes).then((response) => {      return callGraph(uri, response.accessToken, axiosConfig)  })}當(dāng)檢查 TokenResponse 的 TS 定義時(shí),它清楚地表明該屬性在對(duì)象上可用:accessTokenexport type TokenResponse = AuthResponse & {    uniqueId: string;    tenantId: string;    scopes: Array<string>;    tokenType: string;    idToken: string;    idTokenClaims: StringDict;    accessToken: string;    refreshToken: string;    expiresOn: Date;    account: Account;};我做錯(cuò)了什么?
查看完整描述

1 回答

?
慕妹3242003

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超6個(gè)贊

只是一個(gè)關(guān)于你的,雖然你正在使用.我會(huì)這樣寫這段代碼:catchawait


import * as Msal from '@azure/msal-browser'


export async function getTokenPopup(request: Msal.TokenExchangeParameters) {

    try {

        return await auth.acquireTokenSilent(request);

    } catch (error) {

        return await auth.acquireTokenPopup(request);

    }

}


const getGraphDetails = async (

    uri: string,

    scopes: Msal.TokenExchangeParameters,

    axiosConfig?: AxiosRequestConfig

) => {

    try {

        const response = await getTokenPopup(scopes);

        return callGraph(uri, response.accessToken, axiosConfig);

    } catch (error) {

        throw new Error("You could not get a token");

    }

}

現(xiàn)在,為什么要進(jìn)入.有一種可能性,該函數(shù)將同時(shí)失敗, 對(duì)于 和 。因此,該函數(shù)將引發(fā)錯(cuò)誤(或不返回任何內(nèi)容,具體取決于您的實(shí)現(xiàn))。voidresponsegetTokenPopupacquireTokenSilentacquireTokenPopupgetTokenPopup


TypeScript 看到這一點(diǎn),并添加一個(gè)類型以指示有可能無法獲得響應(yīng)。void


查看完整回答
反對(duì) 回復(fù) 2022-09-02
  • 1 回答
  • 0 關(guān)注
  • 140 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)