Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.
/ content-sdk-ios Public archive

An SDK that offers easy access for developers to video sources and Glomex tracking events.

License

Notifications You must be signed in to change notification settings

glomex/content-sdk-ios

Repository files navigation

glomex/content-sdk

Carthage compatible CI Status Version License Platform

Demo

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

Cocoapods

Content SDK is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'glomex/content-sdk'

Carthage

Add ContentSdk in your Cartfile.

github "glomex/content-sdk"

Run carthage to build the framework and drag the built ContentSdk.framework into your Xcode project.

Integration

ContentSdk.load() is used to load content. Content is passed to callback if content loaded successfully or error will be return to handle negative result

import glomex

var video: Content?
var errorDescription: String?

let config = ContentConfig(content_id: contentId, integration_id: integrationId, page_url: pageUrl)
player.playWithURL(URL(string: url)!)

ContentSdk.load(config: config) { [weak self] (content, error) in
    if let error = error {
        switch error {
        case ContentSdkError.configError:
            self?.errorDescription = "configError"
        case ContentSdkError.newrorkError:
            self?.errorDescription = "newrorkError"
        case ContentSdkError.serverError(let reason):
            self?.errorDescription = "serverError: \(reason)"
        default:
            break
        }
        return
    }
    self?.video = content
}

Content is used to get sources by content.getSources()

Track content events:

  • content.trackContentBegin() to track content beginning event
  • content.trackAdBegin(adRollName: AdRollName.preroll) to track ad beginning event by type

Author

[email protected],

License

GlomexContentSdk is available under the MIT license. See the LICENSE file for more info.

About

An SDK that offers easy access for developers to video sources and Glomex tracking events.

Resources

License

Stars

Watchers

Forks

Packages

No packages published