Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Remove IDs use placeholders #374

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1-Authentication/2-sign-in-b2c/SPA/src/app/auth-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const b2cPolicies = {
*/
export const msalConfig: Configuration = {
auth: {
clientId: '9067c884-9fa6-414f-9aa4-a565b1cb46be', // This is the ONLY mandatory field that you need to supply.
clientId: 'Enter_the_Application_Id_Here', // This is the ONLY mandatory field that you need to supply.
authority: b2cPolicies.authorities.signUpSignIn.authority, // Defaults to "https://login.microsoftonline.com/common"
knownAuthorities: [b2cPolicies.authorityDomain], // Mark your B2C tenant's domain as trusted.
redirectUri: '/auth', // Points to window.location.origin by default. You must register this URI on Azure portal/App Registration.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"AzureAdB2C": {
"Instance": "https://fabrikamb2c.b2clogin.com",
"ClientId": "e29ac359-6a90-4f9e-b31c-8f64e1ac20cb",
"ClientId": "Enter_the_Application_Id_Here",
"Domain": "fabrikamb2c.onmicrosoft.com",
"SignUpSignInPolicyId": "b2c_1_susi_v2",
"Scopes": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const b2cPolicies = {
*/
export const msalConfig: Configuration = {
auth: {
clientId: '9067c884-9fa6-414f-9aa4-a565b1cb46be', // This is the ONLY mandatory field that you need to supply.
clientId: 'Enter_the_Application_Id_Here', // This is the ONLY mandatory field that you need to supply.
authority: b2cPolicies.authorities.signUpSignIn.authority, // Defaults to "https://login.microsoftonline.com/common"
knownAuthorities: [b2cPolicies.authorityDomain], // Mark your B2C tenant's domain as trusted.
redirectUri: '/auth', // Points to window.location.origin by default. You must register this URI on Azure portal/App Registration.
Expand Down
2 changes: 1 addition & 1 deletion 6-AdvancedScenarios/1-call-api-obo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ For a middle-tier web API (`ProfileAPI`) to be able to call a downstream web API
For instance:

```json
"knownClientApplications": ["ca8dca8d-f828-4f08-82f5-325e1a1c6428"],
"knownClientApplications": ["Enter_the_Application_Id_Here"],
```

1. **Save** the changes to the manifest.
Expand Down
2 changes: 1 addition & 1 deletion 6-AdvancedScenarios/2-call-api-mt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ Open the project in your IDE (like Visual Studio or Visual Studio Code) to confi
For instance:

```json
"knownClientApplications": ["ca8dca8d-f828-4f08-82f5-325e1a1c6428"],
"knownClientApplications": ["Enter_the_Application_Id_Here"],
```

1. **Save** the changes to the manifest.
Expand Down
Loading