You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<LocalizedStringElementType="ErrorMessage"StringId="UserMessageIfCouldntSendSms">Cannot Send SMS to the phone, please try another phone number.</LocalizedString>
251
+
<LocalizedStringElementType="ErrorMessage"StringId="UserMessageIfInvalidFormat">Your phone number is not in a valid format, please correct it and try again.</LocalizedString>
252
+
<LocalizedStringElementType="ErrorMessage"StringId="UserMessageIfMaxAllowedCodeRetryReached">Wrong code entered too many times, please try again later.</LocalizedString>
253
+
<LocalizedStringElementType="ErrorMessage"StringId="UserMessageIfServerError">Cannot use MFA service, please try again later.</LocalizedString>
254
+
<LocalizedStringElementType="ErrorMessage"StringId="UserMessageIfThrottled">Your request has been throttled, please try again later.</LocalizedString>
Copy file name to clipboardExpand all lines: articles/active-directory-b2c/multi-factor-auth-technical-profile.md
+31-33Lines changed: 31 additions & 33 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ manager: celestedg
9
9
ms.service: active-directory
10
10
ms.workload: identity
11
11
ms.topic: conceptual
12
-
ms.date: 03/20/2020
12
+
ms.date: 03/26/2020
13
13
ms.author: mimart
14
14
ms.subservice: B2C
15
15
---
@@ -73,37 +73,37 @@ The **OutputClaimsTransformations** element may contain a collection of **Output
73
73
| Attribute | Required | Description |
74
74
| --------- | -------- | ----------- |
75
75
| Operation | Yes | Must be **OneWaySMS**. |
76
-
| UserMessageIfInvalidFormat | No | Custom error message if the phone number provided is not a valid phone number |
77
-
| UserMessageIfCouldntSendSms | No | Custom error message if the phone number provided does not accept SMS |
78
-
| UserMessageIfServerError | No | Custom error message if the server has encountered an internal error |
79
76
80
-
###Return an error message
77
+
#### UI elements
81
78
82
-
As described in [Metadata](#metadata), you can customize the error message shown to the user for different error cases. You can further localize those messages by prefixing the locale. For example:
79
+
The following metadatacan be used to configure the error messages displayed upon sending verification code failure. The metadata should be configured in the [self-asserted](self-asserted-technical-profile.md) technical profile. The error messages can be [localized](localization-string-ids.md#azure-mfa-error-messages).
@@ -128,24 +128,22 @@ The Azure MFA protocol provider does not return any **OutputClaims**, thus there
128
128
129
129
The **OutputClaimsTransformations** element may contain a collection of **OutputClaimsTransformation** elements that are used to modify the output claims or generate new ones.
130
130
131
-
## Metadata
131
+
###Metadata
132
132
133
133
| Attribute | Required | Description |
134
134
| --------- | -------- | ----------- |
135
135
| Operation | Yes | Must be **Verify**|
136
-
| UserMessageIfInvalidFormat | No | Custom error message if the phone number provided is not a valid phone number |
137
-
| UserMessageIfWrongCodeEntered | No | Custom error message if the code entered for verification is wrong |
138
-
| UserMessageIfMaxAllowedCodeRetryReached | No | Custom error message if the user has attempted a verification code too many times |
139
-
| UserMessageIfThrottled | No | Custom error message if the user is throttled |
140
-
| UserMessageIfServerError | No | Custom error message if the server has encountered an internal error |
141
136
142
-
###Return an error message
137
+
#### UI elements
143
138
144
-
As described in [Metadata](#metadata), you can customize the error message shown to the user for different error cases. You can further localize those messages by prefixing the locale. For example:
139
+
The following metadatacan be used to configure the error messages displayed upon code verification failure. The metadata should be configured in the [self-asserted](self-asserted-technical-profile.md) technical profile. The error messages can be [localized](localization-string-ids.md#azure-mfa-error-messages).
145
140
146
-
```XML
147
-
<ItemKey="en.UserMessageIfWrongCodeEntered">Wrong code has been entered.</Item>
148
-
```
141
+
| Attribute | Required | Description |
142
+
| --------- | -------- | ----------- |
143
+
| UserMessageIfMaxAllowedCodeRetryReached| No | User error message if the user has attempted a verification code too many times. |
144
+
| UserMessageIfServerError | No | User error message if the server has encountered an internal error. |
145
+
| UserMessageIfThrottled| No | User error message if the request is throttled.|
146
+
| UserMessageIfWrongCodeEntered| No| User error message if the code entered for verification is wrong.|
0 commit comments