Skip to content

Commit 3fbaea7

Browse files
committed
fixin warnings and suggestions 2
1 parent 8bb0184 commit 3fbaea7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

msal-javascript-conceptual/node/certificate-credentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ See the MSAL sample: [auth-code-with-certs](https://github.com/AzureAD/microsoft
4242

4343
### Registering certificates
4444

45-
If you do not have a certificate, you can create a self-signed certificate [using PowerShell](/powershell/module/pki/new-selfsignedcertificate?view=windowsserver2022-ps) or using [Azure KeyVault](https://azure.microsoft.com/products/key-vault#layout-container-uida0cf).
45+
If you do not have a certificate, you can create a self-signed certificate [using PowerShell](/powershell/module/pki/new-selfsignedcertificate) or using [Azure KeyVault](https://azure.microsoft.com/products/key-vault#layout-container-uida0cf).
4646

4747
You need to upload your certificate to **Microsoft Entra ID**.
4848

@@ -170,7 +170,7 @@ The OAuth 2.0 protocol recommends using an HTTPS connection whenever possible. M
170170
171171
You'll also need to add your self-signed certificates to the *credential manager* / *key chain* of your **OS** to bypass the browser's security policy. You may still see a warning in your browser afterwards (e.g. Chrome).
172172
173-
* For Windows users, follow the guide here: [How to: View certificates with the MMC snap-in](https://docs.microsoft.com/dotnet/framework/wcf/feature-details/how-to-view-certificates-with-the-mmc-snap-in).
173+
* For Windows users, follow the guide here: [How to: View certificates with the MMC snap-in](/dotnet/framework/wcf/feature-details/how-to-view-certificates-with-the-mmc-snap-in).
174174
175175
* For Linux and MacOS users, please consult your operating system documentation on how to install certificates.
176176

msal-javascript-conceptual/node/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const msalInstance = new PublicClientApplication(msalConfig);
8989
| `authorityMetadata` | A string containing the .well-known/openid-configuration endpoint response. See [Performance](../browser/performance.md) for more info | string | Empty string `""` |
9090
| `clientCapabilities` | Array of capabilities to be added to all network requests as part of the `xms_cc` claims request | Array of strings | [] |
9191
| `protocolMode` | Enum representing the protocol mode to use. If `"AAD"`, will function on the Microsoft Entra v2 endpoints; if `"OIDC"`, will function on OIDC-compliant endpoints. | string | `"AAD"` |
92-
| `azureCloudOptions` | A defined set of azure cloud options for developers to default to their specific cloud authorities, for specific clouds supported please refer to the [AzureCloudInstance](https://azuread.github.io/microsoft-authentication-library-for-js/ref/types/_azure_msal_node.AzureCloudInstance.html) | [AzureCloudOptions](/javascript/api/@azure/msal-node/#azurecloudoptions) | [AzureCloudInstance.None](msaljs/azure_cloud_instance) |
92+
| `azureCloudOptions` | A defined set of azure cloud options for developers to default to their specific cloud authorities, for specific clouds supported please refer to the [AzureCloudInstance](https://azuread.github.io/microsoft-authentication-library-for-js/ref/types/_azure_msal_node.AzureCloudInstance.html) | [AzureCloudOptions](/javascript/api/@azure/msal-node/#azurecloudoptions) | `AzureCloudInstance.None` |
9393
| `skipAuthorityMetadataCache` | A flag to choose whether to use the local metadata cache during authority initialization. Metadata cache would be used if no authority metadata is provided in configuration and before a network call for metadata has been made | boolean | `false` |
9494

9595
### Cache Config Options

0 commit comments

Comments
 (0)