Files
asconnect-service/Sources/ASConnectService/Catalogs/ASConnectService.docc/Extensions/Servers.md
T
javier 3aaf5cd7a5 Overall update and improvements (#4)
This PR contains all the work done to update the App Store Connect OpenAPI specification document to its latest version, plus the implementation of the `BearerAuthMiddleware` middleware, and several other improvements to the setup of the library, the `Makefile` file, and the documentation.

Reviewed-on: #4
Co-authored-by: Javier Cicchelli <javier@rock-n-code.com>
Co-committed-by: Javier Cicchelli <javier@rock-n-code.com>
2026-03-26 01:07:23 +00:00

512 B

Servers

Server URLs defined in the OpenAPI document.

Overview

The Servers namespace provides access to the base URLs defined in the App Store Connect API OpenAPI specification. Use these URLs when creating a Client instance.

let client = Client(
    serverURL: try Servers.Server1.url(),
    transport: URLSessionTransport(),
    middlewares: [
        BearerAuthMiddleware(token: yourJWTToken)
    ]
)

Topics

Server URLs

  • Servers/Server1
  • Servers/server1()