Skip to content

artificialsolutions/tie-api-client-ios

Repository files navigation

TIE API Client

This library provides a way of communicating with a Teneo Engine server instance

Requirements

  • iOS 12.0+
  • Xcode 11.0+
  • Swift 5.0+

Basic Use

Setup

Must be called before calling sendInput or closeSession

do {
	try TieApiService.sharedInstance.setup("BASE_URL", endpoint: "ENDPOINT")
} catch {
	// Handle errors here
}

Send Input

TieApiService.sharedInstance.sendInput({MESSAGE},
                                       parameters: {PARAMETERS},
                                       success: { response in
	// Handle response. Remember to dispatch to main thread if updating UI
}, failure: { error in
	// Handle error
})

Close Session

TieApiService.sharedInstance.closeSession({ response in
	// Handle response. Remember to dispatch to main thread if updating UI
}, failure: { error in
	// Handle error
})

Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

CocoaPods 1.5+ is required to build TieApiClient 1.0.0+.

To integrate TieApiClient into your Xcode project using CocoaPods, specify it in your Podfile:

pod "TieApiClient"

Then, run the following command:

$ pod install

License

TieApiClient is released under the Apache License, Version 2.0. See LICENSE for details.