Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 1.03 KB

_oauth-wildcard-usage.mdx

File metadata and controls

13 lines (9 loc) · 1.03 KB

import Aside from 'src/components/Aside.astro'; import InlineField from 'src/components/InlineField.astro';

Available since 1.43.0

Configured URLs containing wildcards are considered during validation when {props.fieldName} is set to {props.wildcard}. Wildcards are allowed in the following positions:

  • The left-most subdomain - A full or partial wildcard is allowed in the left-most subdomain. The replacement value cannot contain a ..
  • The port number - A wildcard is allowed in place of the port number. Partial wildcards are not allowed in this position.
  • A path segment - A full or partial wildcard is allowed in any path segment. The replacement value cannot contain a /.
  • A query string value - A wildcard is allowed in place of a query string value. Partial wildcards are not allowed in this position. Wildcards are not allowed in query string names.

See the OAuth 2.0 URL Validation page for more detail.