Skip to content

Commit 93e198e

Browse files
committed
Update docs for base64 filters
1 parent 37b0378 commit 93e198e

File tree

1 file changed

+28
-4
lines changed

1 file changed

+28
-4
lines changed

docs/filters.md

+28-4
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,46 @@ jsonpath "$.books" count == 12
6161

6262
### base64Decode
6363

64-
Decode a base 64 encoded string into bytes.
64+
Decode a [Base64 encoded string] into bytes.
6565

6666
```hurl
6767
GET https://example.org/api
6868
HTTP 200
6969
[Asserts]
70-
jsonpath "$.token" base64Decode == hex,e4bda0e5a5bde4b896e7958c;
70+
jsonpath "$.token" base64Decode == hex,3c3c3f3f3f3e3e;
7171
```
7272

7373
### base64Encode
7474

75-
Encode bytes into base 64 encoded string.
75+
Encode bytes into [Base64 encoded string].
7676

7777
```hurl
7878
GET https://example.org/api
7979
HTTP 200
8080
[Asserts]
81-
bytes base64Encode == "5L2g5aW95LiW55WM"
81+
bytes base64Encode == "PDw/Pz8+Pg=="
82+
```
83+
84+
### base64UrlSafeDecode
85+
86+
Decode a Base64 encoded string into bytes (using [Base64 URL safe encoding]).
87+
88+
```hurl
89+
GET https://example.org/api
90+
HTTP 200
91+
[Asserts]
92+
jsonpath "$.token" base64UrlSafeDecode == hex,3c3c3f3f3f3e3e;
93+
```
94+
95+
### base64UrlSafeEncode
96+
97+
Encode bytes into Base64 encoded string (using [Base64 URL safe encoding]).
98+
99+
```hurl
100+
GET https://example.org/api
101+
HTTP 200
102+
[Asserts]
103+
bytes base64UrlSafeEncode == "PDw_Pz8-Pg"
82104
```
83105

84106
### count
@@ -331,3 +353,5 @@ bytes decode "gb2312" xpath "string(//body)" == "你好世界"
331353
[a specification format]: https://docs.rs/chrono/latest/chrono/format/strftime/index.html
332354
[XPath]: https://en.wikipedia.org/wiki/XPath
333355
[JSONPath]: https://goessner.net/articles/JsonPath/
356+
[Base64 encoded string]: https://datatracker.ietf.org/doc/html/rfc4648#section-4
357+
[Base64 URL safe encoding]: https://datatracker.ietf.org/doc/html/rfc4648#section-5

0 commit comments

Comments
 (0)