Skip to content

Commit 6bd7ed5

Browse files
authored
Thumbprint is in upper case
1 parent 510f45e commit 6bd7ed5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/api-management/api-management-howto-mutual-certificates-for-clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Below policies can be configured to check the thumbprint of a client certificate
5656

5757
```xml
5858
<choose>
59-
<when condition="@(context.Request.Certificate == null || !context.Request.Certificate.Verify() || context.Request.Certificate.Thumbprint != "desired-thumbprint")" >
59+
<when condition="@(context.Request.Certificate == null || !context.Request.Certificate.Verify() || context.Request.Certificate.Thumbprint != "DESIRED-THUMBPRINT-IN-UPPER-CASE")" >
6060
<return-response>
6161
<set-status code="403" reason="Invalid client certificate" />
6262
</return-response>

0 commit comments

Comments
 (0)