Office.AuthContext interface
Microsoft Authentication Library for JavaScript (MSAL.js) に渡すことができるユーザー情報を表します。
プロパティ
| authority |
MSAL がトークンを要求できるディレクトリを示す URL。 |
| authority |
このアカウントの ID プロバイダー (IdP) による ID の種類。 "aad" はorganization アカウントを表し、"msa" は Microsoft 個人用アカウント を表します。 |
| login |
サインインしようとしているユーザー アカウントに関するヒントを提供する省略可能な要求。 |
| tenant |
このアカウントが属する完全なテナントまたは組織 ID。 |
| user |
アカウントの一意の ID。 |
| user |
インターネット標準 RFC に基づく、ユーザーのインターネット スタイルのログイン名。 UPN とも呼ばれます。 |
プロパティの詳細
authorityBaseUrl
MSAL がトークンを要求できるディレクトリを示す URL。
authorityBaseUrl: string;
プロパティ値
string
authorityType
このアカウントの ID プロバイダー (IdP) による ID の種類。 "aad" はorganization アカウントを表し、"msa" は Microsoft 個人用アカウント を表します。
authorityType: "aad" | "msa" | "other";
プロパティ値
"aad" | "msa" | "other"
loginHint
サインインしようとしているユーザー アカウントに関するヒントを提供する省略可能な要求。
loginHint: string;
プロパティ値
string
tenantId
このアカウントが属する完全なテナントまたは組織 ID。
tenantId: string;
プロパティ値
string
userObjectId
アカウントの一意の ID。
userObjectId: string;
プロパティ値
string
userPrincipalName
インターネット標準 RFC に基づく、ユーザーのインターネット スタイルのログイン名。 UPN とも呼ばれます。
userPrincipalName: string;
プロパティ値
string