We currently encode against the unreserved chars. Actually, what people want is form-url-encoded. The sole difference are that: - `*` is safe instead of `~` - use `%20` instead of `+` for encoding space, as Javascript still does that
We currently encode against the unreserved chars. Actually, what people want is form-url-encoded.
The sole difference are that:
*is safe instead of~%20instead of+for encoding space, as Javascript still does that