Skip to content

Commit 794133e

Browse files
authored
Update start-parameter.md
1 parent fe09873 commit 794133e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apps/docs/platform/start-parameter.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,5 @@ data's [start_param](init-data.md#parameters-list) property.
3838

3939
## Restrictions
4040

41-
- Maximum length: **512 characters**
42-
- Allowed characters: **latin alphabet characters, digits** and the **underscore**. The valid RegExp for the start param value
43-
is: `/^\w{0,512}$/`.
41+
- Only the following characters are allowed: `A-Z`, `a-z`, `0-9`, `_` and `-`. We recommend using [base64url](https://base64.guru/standards/base64url) to encode parameters with binary and other types of content. The parameter can be up to `64` characters long.
42+
- You can validate start parameter with the following RegExp: `/^[\w-]{0,64}$/`

0 commit comments

Comments
 (0)