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

Commit

Permalink
Remove IDs use placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
kengaderdus committed May 15, 2024
1 parent 91fec70 commit a704357
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit a704357

Please sign in to comment.