QuerySegmentEncoding

sttp.model.Uri$.QuerySegmentEncoding$

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Value members

Concrete fields

val All: Encoding

Encodes all reserved characters using java.net.URLEncoder.encode.

Encodes all reserved characters using java.net.URLEncoder.encode.

Attributes

Doesn't encode any of the reserved characters, leaving intact all characters allowed in the query string as defined by RFC3986.

Doesn't encode any of the reserved characters, leaving intact all characters allowed in the query string as defined by RFC3986.

Attributes

Doesn't encode any of the reserved characters, leaving intact all characters allowed in the query string as defined by RFC3986 as well as the characters [ and ]. These brackets aren't legal in the query part of the URI, but some servers use them unencoded. See https://stackoverflow.com/questions/11490326/is-array-syntax-using-square-brackets-in-url-query-strings-valid for discussion.

Doesn't encode any of the reserved characters, leaving intact all characters allowed in the query string as defined by RFC3986 as well as the characters [ and ]. These brackets aren't legal in the query part of the URI, but some servers use them unencoded. See https://stackoverflow.com/questions/11490326/is-array-syntax-using-square-brackets-in-url-query-strings-valid for discussion.

Attributes

Encodes only the & and = reserved characters, which are usually used to separate query parameter names and values.

Encodes only the & and = reserved characters, which are usually used to separate query parameter names and values.

Attributes

Encodes only the & reserved character, which is usually used to separate query parameter names and values. The '=' sign is allowed in values.

Encodes only the & reserved character, which is usually used to separate query parameter names and values. The '=' sign is allowed in values.

Attributes