case class RequestT[U[_], T, -R](method: U[Method], uri: U[Uri], body: RequestBody[R], headers: Seq[Header], response: ResponseAs[T, R], options: RequestOptions, tags: Map[String, Any]) extends HasHeaders with RequestTExtensions[U, T, R] with Product with Serializable

Describes a HTTP request, along with a description of how the response body should be handled.

The request can be sent using a SttpBackend, which provides a superset of the required capabilities.

U

Specifies if the method & uri are specified. By default can be either: * Empty, which is a type constructor which always resolves to None. This type of request is aliased to PartialRequest: there's no method and uri specified, and the request cannot be sent. * Identity, which is an identity type constructor. This type of request is aliased to Request: the method and uri are specified, and the request can be sent.

T

The target type, to which the response body should be read.

R

The backend capabilities required by the request or response description. This might be Any (no requirements), Effect (the backend must support the given effect type), Streams (the ability to send and receive streaming bodies) or sttp.capabilities.WebSockets (the ability to handle websocket requests).

response

Description of how the response body should be handled. Needs to be specified upfront so that the response is always consumed and hence there are no requirements on client code to consume it. An exception to this are unsafe streaming and websocket responses, which need to be consumed/closed by the client.

tags

Request-specific tags which can be used by backends for logging, metrics, etc. Not used by default.

Linear Supertypes
Serializable, Product, Equals, RequestTExtensions[U, T, R], HasHeaders, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestT
  2. Serializable
  3. Product
  4. Equals
  5. RequestTExtensions
  6. HasHeaders
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RequestT(method: U[Method], uri: U[Uri], body: RequestBody[R], headers: Seq[Header], response: ResponseAs[T, R], options: RequestOptions, tags: Map[String, Any])

    response

    Description of how the response body should be handled. Needs to be specified upfront so that the response is always consumed and hence there are no requirements on client code to consume it. An exception to this are unsafe streaming and websocket responses, which need to be consumed/closed by the client.

    tags

    Request-specific tags which can be used by backends for logging, metrics, etc. Not used by default.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def acceptEncoding(encoding: String): RequestT[U, T, R]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def auth: SpecifyAuthScheme[U, T, R]
  7. def body(fs: Seq[(String, String)], encoding: String): RequestT[U, T, R]

    Encodes the given parameters as form data.

    Encodes the given parameters as form data. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  8. def body(fs: (String, String)*): RequestT[U, T, R]

    Encodes the given parameters as form data using utf-8.

    Encodes the given parameters as form data using utf-8. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  9. def body(fs: Map[String, String], encoding: String): RequestT[U, T, R]

    Encodes the given parameters as form data.

    Encodes the given parameters as form data. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  10. def body(fs: Map[String, String]): RequestT[U, T, R]

    Encodes the given parameters as form data using utf-8.

    Encodes the given parameters as form data using utf-8. If content type is not yet specified, will be set to application/x-www-form-urlencoded.

    If content length is not yet specified, will be set to the length of the number of bytes in the url-encoded parameter string.

  11. def body(b: InputStream): RequestT[U, T, R]

    If content type is not yet specified, will be set to application/octet-stream.

  12. def body(b: ByteBuffer): RequestT[U, T, R]

    If content type is not yet specified, will be set to application/octet-stream.

  13. def body(b: Array[Byte]): RequestT[U, T, R]

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    If content length is not yet specified, will be set to the length of the given array.

  14. def body(b: String, encoding: String): RequestT[U, T, R]

    If content type is not yet specified, will be set to text/plain with the given encoding.

    If content type is not yet specified, will be set to text/plain with the given encoding.

    If content length is not yet specified, will be set to the number of bytes in the string using the given encoding.

  15. def body(b: String): RequestT[U, T, R]

    Uses the utf-8 encoding.

    Uses the utf-8 encoding.

    If content type is not yet specified, will be set to text/plain with utf-8 encoding.

    If content length is not yet specified, will be set to the number of bytes in the string using the utf-8 encoding.

  16. def body[B](b: B)(implicit arg0: BodySerializer[B]): RequestT[U, T, R]

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    Definition Classes
    RequestTExtensions
  17. def body(path: Path): RequestT[U, T, R]

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    If content length is not yet specified, will be set to the length of the given file.

    Definition Classes
    RequestTExtensions
  18. def body(file: File): RequestT[U, T, R]

    If content type is not yet specified, will be set to application/octet-stream.

    If content type is not yet specified, will be set to application/octet-stream.

    If content length is not yet specified, will be set to the length of the given file.

    Definition Classes
    RequestTExtensions
  19. val body: RequestBody[R]
  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  21. def contentLength(l: Long): RequestT[U, T, R]
  22. def contentLength: Option[Long]
    Definition Classes
    HasHeaders
  23. def contentType(ct: String, encoding: String): RequestT[U, T, R]
  24. def contentType(mt: MediaType): RequestT[U, T, R]
  25. def contentType(ct: String): RequestT[U, T, R]
  26. def contentType: Option[String]
    Definition Classes
    HasHeaders
  27. def cookie(n: String, v: String): RequestT[U, T, R]
  28. def cookie(nv: (String, String)): RequestT[U, T, R]
  29. def cookies(nvs: (String, String)*): RequestT[U, T, R]
  30. def cookies(cs: Iterable[CookieWithMeta]): RequestT[U, T, R]
  31. def cookies(r: Response[_]): RequestT[U, T, R]
  32. def cookies: Seq[Either[String, CookieWithMeta]]
    Definition Classes
    HasHeaders
  33. def delete(uri: Uri): Request[T, R]
  34. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  35. def followRedirects(fr: Boolean): RequestT[U, T, R]
  36. def get(uri: Uri): Request[T, R]
  37. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  38. def head(uri: Uri): Request[T, R]
  39. def header(k: String, ov: Option[String]): RequestT[U, T, R]

    Adds the given header to the end of the headers sequence, if the value is defined.

    Adds the given header to the end of the headers sequence, if the value is defined. Otherwise has no effect.

  40. def header(k: String, v: String): RequestT[U, T, R]

    Adds the given header to the end of the headers sequence.

  41. def header(k: String, v: String, replaceExisting: Boolean): RequestT[U, T, R]

    Adds the given header to the end of the headers sequence.

    Adds the given header to the end of the headers sequence.

    replaceExisting

    If there's already a header with the same name, should it be dropped?

  42. def header(h: Header, replaceExisting: Boolean = false): RequestT[U, T, R]

    Adds the given header to the end of the headers sequence.

    Adds the given header to the end of the headers sequence.

    replaceExisting

    If there's already a header with the same name, should it be dropped?

  43. def header(h: String): Option[String]
    Definition Classes
    HasHeaders
  44. def headers(hs: Header*): RequestT[U, T, R]
  45. def headers(hs: Map[String, String]): RequestT[U, T, R]
  46. def headers(h: String): Seq[String]
    Definition Classes
    HasHeaders
  47. val headers: Seq[Header]
    Definition Classes
    RequestT → HasHeaders
  48. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  49. def isWebSocket: Boolean
  50. def mapResponse[T2](f: (T) => T2): RequestT[U, T2, R]
  51. def maxRedirects(n: Int): RequestT[U, T, R]
  52. def method(method: Method, uri: Uri): Request[T, R]
  53. val method: U[Method]
  54. def multipartBody[R2](p1: Part[RequestBody[R2]], ps: Part[RequestBody[R2]]*): RequestT[U, T, R with R2]
  55. def multipartBody[R2](ps: Seq[Part[RequestBody[R2]]]): RequestT[U, T, R with R2]
  56. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  57. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  58. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  59. def options(uri: Uri): Request[T, R]
  60. val options: RequestOptions
  61. def patch(uri: Uri): Request[T, R]
  62. def post(uri: Uri): Request[T, R]
  63. def productElementNames: Iterator[String]
    Definition Classes
    Product
  64. def proxyAuth: SpecifyAuthScheme[U, T, R]
  65. def put(uri: Uri): Request[T, R]
  66. def readTimeout(t: Duration): RequestT[U, T, R]

    When the request is sent, if reading the response times out (there's no activity for the given period of time), a failed effect will be returned, or an exception will be thrown

  67. def redirectToGet(r: Boolean): RequestT[U, T, R]

    When a POST or PUT request is redirected, should the redirect be a POST/PUT as well (with the original body), or should the request be converted to a GET without a body.

    When a POST or PUT request is redirected, should the redirect be a POST/PUT as well (with the original body), or should the request be converted to a GET without a body.

    Note that this only affects 301 and 302 redirects. 303 redirects are always converted, while 307 and 308 redirects always keep the same method.

    See https://developer.mozilla.org/en-US/docs/Web/HTTP/Redirections for details.

  68. def response[T2, R2](ra: ResponseAs[T2, R2]): RequestT[U, T2, R with R2]

    Specifies the target type to which the response body should be read.

    Specifies the target type to which the response body should be read. Note that this replaces any previous specifications, which also includes any previous mapResponse invocations.

  69. val response: ResponseAs[T, R]
  70. def send[F[_], P](backend: SttpBackend[F, P])(implicit isIdInRequest: IsIdInRequest[U], pEffectFIsR: <:<[P with Effect[F], R]): F[Response[T]]

    Sends the request, using the given backend.

    Sends the request, using the given backend. Only requests for which the method & URI are specified can be sent.

    The required capabilities must be a subset of the capabilities provided by the backend.

    returns

    For synchronous backends (when the effect type is Identity), Response is returned directly and exceptions are thrown. For asynchronous backends (when the effect type is e.g. scala.concurrent.Future), an effect containing the Response is returned. Exceptions are represented as failed effects (e.g. failed futures). The response body is deserialized as specified by this request (see RequestT.response). Known exceptions are converted by backends to one of SttpClientException. Other exceptions are thrown unchanged.

  71. def show(includeBody: Boolean = true, includeHeaders: Boolean = true, sensitiveHeaders: Set[String] = HeaderNames.SensitiveHeaders): String
  72. def showBasic: String
  73. def streamBody[S](s: Streams[S])(b: BinaryStream): RequestT[U, T, R with S]
  74. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  75. def tag(k: String): Option[Any]
  76. def tag(k: String, v: Any): RequestT[U, T, R]
  77. val tags: Map[String, Any]
  78. def toCurl(implicit isIdInRequest: IsIdInRequest[U]): String
  79. def toRfc2616Format(implicit isIdInRequest: IsIdInRequest[U]): String
  80. def unsafeCookies: Seq[CookieWithMeta]
    Definition Classes
    HasHeaders
  81. val uri: U[Uri]
  82. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  83. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  84. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def send[F[_], P]()(implicit backend: SttpBackend[F, P], pEffectFIsR: <:<[P with Effect[F], R], isIdInRequest: IsIdInRequest[U]): F[Response[T]]

    Sends the request, using the backend from the implicit scope.

    Sends the request, using the backend from the implicit scope. Only requests for which the method & URI are specified can be sent.

    The required capabilities must be a subset of the capabilities provided by the backend.

    returns

    For synchronous backends (when the effect type is Identity), Response is returned directly and exceptions are thrown. For asynchronous backends (when the effect type is e.g. scala.concurrent.Future), an effect containing the Response is returned. Exceptions are represented as failed effects (e.g. failed futures). The response body is deserialized as specified by this request (see RequestT.response). Known exceptions are converted by backends to one of SttpClientException. Other exceptions are thrown unchanged.

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) use request.send(backend), providing the backend explicitly

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from RequestTExtensions[U, T, R]

Inherited from HasHeaders

Inherited from AnyRef

Inherited from Any

Ungrouped