Skip to content

seatgeek/seatgeek-ios-sdk

Repository files navigation

SeatGeekSDK

For the SeatGeek SDK documentation, please refer to our partner documentation SeatGeek SDK allows client integrators to bring ticketing experience into their iOS apps.

ios SPM

Contents

Requirements

  • iOS 15.0+
  • XCode 15.0+

Features

  • Ability to view tickets, ticket history
  • Ability to list tickets for resale
  • Drop-in UI (standard/custom widgets, buttons, etc.)
  • SSO (Single sign-on)

Communication

  • If you have any questions, please contact us via Slack for details.

Installation

Swift Package Manager

Swift Package Manager is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Xcode 14.3+ is required to build the SeatGeekSDK using Swift Package Manager

Step I

To integrate SeatGeekSDK into your Xcode project using Swift Package Manager, add it to the dependencies value of your Package.swift:

dependencies: [
    .package(url: "https://github.com/seatgeek/seatgeek-ios-sdk", branch: "main")
]

SeatGeekSDK uses external dependencies. Here you can find a list of them along with versions.

  • SnapKit '5.6.0'
  • SwiftOTP '3.0.0'

SeatGeekSDK uses them as binary targets, so you won't see any of the external dependencies in your Package.swift description.

Your application can use these dependencies independently by importing them to your file. There is no need to add them separately.

Step II

Next, you need to add SeatGeek authorisation credentials. Please reach out to your SeatGeek Enterprise client services representative to acquire it. You will find a step-by-step plan on how to configure auth files in our documentation.

Usage

To get started with SeatGeekSDK please follow this link to our official documentation.