Skip to content

Commit

Permalink
[Identity] update docs for IDC and device code credentials (Azure#30656)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarishmaGhiya authored Aug 5, 2024
1 parent 9646966 commit 5513635
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ export interface DeviceCodeCredentialOptions
*/
tenantId?: string;
/**
* The client (application) ID of an App Registration in the tenant.
* Client ID of the Microsoft Entra application that users will sign into.
* It is recommended that developers register their applications and assign appropriate roles.
* For more information, visit https://aka.ms/identity/AppRegistrationAndRoleAssignment.
* If not specified, users will authenticate to an Azure development application,
* which is not recommended for production scenarios.
*/
clientId?: string;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ export interface InteractiveBrowserCredentialNodeOptions
tenantId?: string;

/**
* The client (application) ID of an App Registration in the tenant.
* The Client ID of the Microsoft Entra application that users will sign into.
* It is recommended that developers register their applications and assign appropriate roles.
* For more information, visit https://aka.ms/identity/AppRegistrationAndRoleAssignment.
* If not specified, users will authenticate to an Azure development application,
* which is not recommended for production scenarios.
*/
clientId?: string;

Expand Down Expand Up @@ -66,8 +70,10 @@ export interface InteractiveBrowserCredentialInBrowserOptions extends Interactiv
tenantId?: string;

/**
* The client (application) ID of an App Registration in the tenant.
* The Client ID of the Microsoft Entra application that users will sign into.
* This parameter is required on the browser.
* Developers need to register their applications and assign appropriate roles.
* For more information, visit https://aka.ms/identity/AppRegistrationAndRoleAssignment.
*/
clientId: string;

Expand Down

0 comments on commit 5513635

Please sign in to comment.