path property

String? path
getter/setter pair

URI path of the API endpoint to protect.

Must start with '/'. Supports glob characters '*' to match a single path segment and '**' to match multiple path segments. Standalone root catch-alls (' / * ' and ' / * *') are invalid because it can negatively impact performance to trigger reCAPTCHA on every single request to your backend. Matching is evaluated against the URL path only (domain, scheme, and query parameters are ignored). Examples: - /login matches /login, https://example.com/login, and /login?query=1, but not /login/step1.

  • /products / * matches /products/123, but not /products/123/456. - /content / * * matches /content/articles/2024/01/01.

Required.

Implementation

core.String? path;