Library with ReactiveCocoa api for Youtube. Allows easy access required parts of videos and channels in one call.
To run the example project, clone the repo, and run pod install
from the Example directory first.
let engine = Engine(.key(YOUR_API_KEY))
let request = Search(.term("VEVO", [.video: [.statistics, .contentDetails], .channel: [.statistics]]))
engine.search(request)
.startWithResult {
result in
guard case .success(let page) = result else {
return
}
let formattedItems = page.items.enumerated().map { "[\($0)] = \($1)" }
print("VEVO:\n\(formattedItems.joined(separator: "\n"))")
}
Supports swift2 and swift3. Use 'swift-2.3' branch for swift2
Cocoapods
pod "YoutubeEngine"
Carthage
github "Igor-Palaguta/YoutubeEngine"
Igor Palaguta, igor.palaguta@gmail.com
YoutubeEngine is available under the MIT license. See the LICENSE file for more info.