HTTP Service

  • Global factory const which can be used to create an HTTPServiceClient with a StitchAppClient. Pass into StitchAppClient.serviceClient(fromFactory:withName) to get a `HTTPServiceClient.

    Declaration

    Swift

    public let httpServiceClientFactory: <<error type>>
  • The HTTP service client, which can be used to perform HTTP requests via MongoDB Stitch.

    See more

    Declaration

    Swift

    public protocol HTTPServiceClient
  • Represents a RFC 6265 cookie.

    See more

    Declaration

    Swift

    public struct HTTPCookie
  • The series of methods accepted by the HTTP service.

    See more

    Declaration

    Swift

    public enum HTTPMethod : String
  • An HTTPRequest encapsulates the details of an HTTP request over the HTTP service.

    See more

    Declaration

    Swift

    public struct HTTPRequest
  • A builder class which can be used to prepare an HTTP request to be executed by the Stitch HTTP service.

    See more

    Declaration

    Swift

    public class HTTPRequestBuilder
  • An error that the HTTPRequestBuilder can throw if it is missing certain configuration properties.

    See more

    Declaration

    Swift

    public enum HTTPRequestBuilderError : Error
  • The response to an HTTP request over the HTTP service.

    See more

    Declaration

    Swift

    public struct HTTPResponse : Decodable