To run the example project, clone the repo, and run pod install
from the Example directory first.
Content SDK is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'glomex/content-sdk'
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.
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 eventcontent.trackAdBegin(adRollName: AdRollName.preroll)
to track ad beginning event by type
GlomexContentSdk is available under the MIT license. See the LICENSE file for more info.