Telesign

master

A Telesign provider for Vapor.
vapor-community/telesign-provider

TelesignProvider

Swift Vapor

TelesignProvider is a Vapor wrapper around TelesignKit

Installation

In your Package.swift file, add the following

.package(url: "https://github.com/vapor-community/telesign-provider.git", from: "3.0.0-beta")

Register the provider to your Application in Configure.swift

app.register(TelesignProvider(apiKey: "YOUR_API_KEY", customerId: "YOUR_CUSTOMER_ID"))

Now we can interact with the API via the TelesignClient that's created on your behalf via the Provider we just registered.

import Telesign

let telesignClient = app.make(TelesignClient.self)

telesignClient.messaging.send(message: "Hello Vapor!", to: "1234567", messageType: .ARN)

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

Last updated: Sun Apr 14 2024 22:43:35 GMT-0900 (Hawaii-Aleutian Daylight Time)