ICustomAuthPublicClientApplication interface

Extends

IPublicClientApplication

メソッド

getCurrentAccount(CustomAuthActionInputs)

キャッシュから現在のアカウントを取得します。

resetPassword(ResetPasswordInputs)

パスワードのリセット フローを開始します。

signIn(SignInInputs)

サインイン フローを開始します。

signUp(SignUpInputs)

サインアップ フローを開始します。

メソッドの詳細

getCurrentAccount(CustomAuthActionInputs)

キャッシュから現在のアカウントを取得します。

function getCurrentAccount(accountRetrievalInputs?: CustomAuthActionInputs): GetAccountResult

パラメーター

accountRetrievalInputs

CustomAuthActionInputs

現在のキャッシュされたアカウントを取得するための入力

返品

操作の結果

resetPassword(ResetPasswordInputs)

パスワードのリセット フローを開始します。

function resetPassword(resetPasswordInputs: ResetPasswordInputs): Promise<ResetPasswordStartResult>

パラメーター

resetPasswordInputs
ResetPasswordInputs

パスワードのリセット フローの入力

返品

ResetPasswordStartResult に解決される Promise

signIn(SignInInputs)

サインイン フローを開始します。

function signIn(signInInputs: SignInInputs): Promise<SignInResult>

パラメーター

signInInputs
SignInInputs

サインイン フローの入力

返品

Promise<SignInResult>

SignInResult に解決される Promise

signUp(SignUpInputs)

サインアップ フローを開始します。

function signUp(signUpInputs: SignUpInputs): Promise<SignUpResult>

パラメーター

signUpInputs
SignUpInputs

サインアップ フローの入力

返品

Promise<SignUpResult>

SignUpResult に解決される約束

継承済みメソッドの詳細

acquireTokenByCode(AuthorizationCodeRequest)

function acquireTokenByCode(request: AuthorizationCodeRequest): Promise<AuthenticationResult>

パラメーター

request

AuthorizationCodeRequest

返品

Promise<AuthenticationResult>

Inherited From IPublicClientApplication.acquireTokenByCode

acquireTokenPopup(PopupRequest)

function acquireTokenPopup(request: PopupRequest): Promise<AuthenticationResult>

パラメーター

request

PopupRequest

返品

Promise<AuthenticationResult>

Inherited From IPublicClientApplication.acquireTokenPopup

acquireTokenRedirect(RedirectRequest)

function acquireTokenRedirect(request: RedirectRequest): Promise<void>

パラメーター

request

RedirectRequest

返品

Promise<void>

Inherited From IPublicClientApplication.acquireTokenRedirect

acquireTokenSilent(SilentRequest)

function acquireTokenSilent(silentRequest: SilentRequest): Promise<AuthenticationResult>

パラメーター

silentRequest

SilentRequest

返品

Promise<AuthenticationResult>

Inherited From IPublicClientApplication.acquireTokenSilent

addEventCallback(EventCallbackFunction, EventType[])

function addEventCallback(callback: EventCallbackFunction, eventTypes?: EventType[]): null | string

パラメーター

callback

EventCallbackFunction

eventTypes

EventType[]

返品

null | string

Inherited From IPublicClientApplication.addEventCallback

addPerformanceCallback(PerformanceCallbackFunction)

function addPerformanceCallback(callback: PerformanceCallbackFunction): string

パラメーター

返品

string

Inherited From IPublicClientApplication.addPerformanceCallback

clearCache(ClearCacheRequest)

function clearCache(logoutRequest?: ClearCacheRequest): Promise<void>

パラメーター

logoutRequest

ClearCacheRequest

返品

Promise<void>

Inherited From IPublicClientApplication.clearCache

disableAccountStorageEvents()

function disableAccountStorageEvents()

Inherited From IPublicClientApplication.disableAccountStorageEvents

enableAccountStorageEvents()

function enableAccountStorageEvents()

Inherited From IPublicClientApplication.enableAccountStorageEvents

getAccount(AccountFilter)

function getAccount(accountFilter: AccountFilter): null | AccountInfo

パラメーター

accountFilter
AccountFilter

返品

null | AccountInfo

Inherited From IPublicClientApplication.getAccount

getAccountByHomeId(string)

function getAccountByHomeId(homeAccountId: string): null | AccountInfo

パラメーター

homeAccountId

string

返品

null | AccountInfo

Inherited From IPublicClientApplication.getAccountByHomeId

getAccountByLocalId(string)

function getAccountByLocalId(localId: string): null | AccountInfo

パラメーター

localId

string

返品

null | AccountInfo

Inherited From IPublicClientApplication.getAccountByLocalId

getAccountByUsername(string)

function getAccountByUsername(userName: string): null | AccountInfo

パラメーター

userName

string

返品

null | AccountInfo

Inherited From IPublicClientApplication.getAccountByUsername

getActiveAccount()

function getActiveAccount(): null | AccountInfo

返品

null | AccountInfo

Inherited From IPublicClientApplication.getActiveAccount

getAllAccounts()

function getAllAccounts(): AccountInfo[]

返品

Inherited From IPublicClientApplication.getAllAccounts

getLogger()

function getLogger(): Logger

返品

Inherited From IPublicClientApplication.getLogger

getTokenCache()

function getTokenCache(): ITokenCache

返品

ITokenCache

Inherited From IPublicClientApplication.getTokenCache

handleRedirectPromise(string)

function handleRedirectPromise(hash?: string): Promise<null | AuthenticationResult>

パラメーター

hash

string

返品

Promise<null | AuthenticationResult>

Inherited From IPublicClientApplication.handleRedirectPromise

hydrateCache(AuthenticationResult, PopupRequest | RedirectRequest | SilentRequest | Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "requestedClaimsHash" | "platformBroker">>)

function hydrateCache(result: AuthenticationResult, request: PopupRequest | RedirectRequest | SilentRequest | Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "requestedClaimsHash" | "platformBroker">>): Promise<void>

パラメーター

result

AuthenticationResult

request

PopupRequest | RedirectRequest | SilentRequest | Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "requestedClaimsHash" | "platformBroker">>

返品

Promise<void>

Inherited From IPublicClientApplication.hydrateCache

initialize(InitializeApplicationRequest)

function initialize(request?: InitializeApplicationRequest): Promise<void>

パラメーター

request

InitializeApplicationRequest

返品

Promise<void>

Inherited From IPublicClientApplication.initialize

initializeWrapperLibrary(WrapperSKU, string)

function initializeWrapperLibrary(sku: WrapperSKU, version: string)

パラメーター

sku

WrapperSKU

version

string

Inherited From IPublicClientApplication.initializeWrapperLibrary

loginPopup(PopupRequest)

function loginPopup(request?: PopupRequest): Promise<AuthenticationResult>

パラメーター

request

PopupRequest

返品

Promise<AuthenticationResult>

Inherited From IPublicClientApplication.loginPopup

loginRedirect(RedirectRequest)

function loginRedirect(request?: RedirectRequest): Promise<void>

パラメーター

request

RedirectRequest

返品

Promise<void>

Inherited From IPublicClientApplication.loginRedirect

logout(EndSessionRequest)

function logout(logoutRequest?: EndSessionRequest): Promise<void>

パラメーター

logoutRequest

EndSessionRequest

返品

Promise<void>

Inherited From IPublicClientApplication.logout

logoutPopup(EndSessionPopupRequest)

function logoutPopup(logoutRequest?: EndSessionPopupRequest): Promise<void>

パラメーター

logoutRequest

EndSessionPopupRequest

返品

Promise<void>

Inherited From IPublicClientApplication.logoutPopup

logoutRedirect(EndSessionRequest)

function logoutRedirect(logoutRequest?: EndSessionRequest): Promise<void>

パラメーター

logoutRequest

EndSessionRequest

返品

Promise<void>

Inherited From IPublicClientApplication.logoutRedirect

removeEventCallback(string)

function removeEventCallback(callbackId: string)

パラメーター

callbackId

string

Inherited From IPublicClientApplication.removeEventCallback

removePerformanceCallback(string)

function removePerformanceCallback(callbackId: string): boolean

パラメーター

callbackId

string

返品

boolean

Inherited From IPublicClientApplication.removePerformanceCallback

setActiveAccount(null | AccountInfo)

function setActiveAccount(account: null | AccountInfo)

パラメーター

account

null | AccountInfo

Inherited From IPublicClientApplication.setActiveAccount

setLogger(Logger)

function setLogger(logger: Logger)

パラメーター

logger
Logger

Inherited From IPublicClientApplication.setLogger

setNavigationClient(INavigationClient)

function setNavigationClient(navigationClient: INavigationClient)

パラメーター

navigationClient

INavigationClient

Inherited From IPublicClientApplication.setNavigationClient

ssoSilent(Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "requestedClaimsHash" | "platformBroker">>)

function ssoSilent(request: Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "requestedClaimsHash" | "platformBroker">>): Promise<AuthenticationResult>

パラメーター

request

Partial<Omit<CommonAuthorizationUrlRequest, "responseMode" | "earJwk" | "codeChallenge" | "codeChallengeMethod" | "requestedClaimsHash" | "platformBroker">>

返品

Promise<AuthenticationResult>

Inherited From IPublicClientApplication.ssoSilent