glomex 1.0.0

glomex 1.0.0

Maintained by Valeriy Herasymenko, Glomex Service.



glomex 1.0.0

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.