IOSアプリで新しいYouTubeAPI(バージョン3)を使用する方法を理解しようとしていますが、その方法がわかりません。私はそれについて多くの調査をしましたが、私が見つけたのは古いAPIのすべての例とコードであるため、それらは有効ではありません。今まで私は、新しいAPIを使用するには、Google Developer Consoleでプロジェクトを作成する必要があることを理解していました(そして私はそれを行いました)...しかし、コードが含まれているページに移動しますが、本当に理解していませんそれを使用する方法。 google apiページへのリンク 私が知る必要があるのは、YouTubeビデオの特定のURLからいくつかの情報を取得する方法です。必要な情報は、「いいね」の総数と「ビュー」の総数です。 ... API 2を使用すると、それを行うのは非常に簡単でした...しかし、今はどこから始めればよいのか本当にわかりません...おそらくいくつかの例といくつかのコードでこれを達成する方法を説明できる人はいますか?多くの人がこれから恩恵を受けると確信しています。
この種のリクエストを行うために、Googleが提供するiOSクライアントを使用する必要はありません。
API Console に移動し、iOSアプリケーション用の新しいSimple APIAccessキーを生成します。表示されたウィンドウにアプリのバンドル識別子を必ず入力してください。または、基本的なリクエストでテストするためのサーバーAPIキーを作成し、コマンドラインからカールすることもできます。
ニーズに関連するエンドポイントを見つけます。ビデオに関する情報を見つけるには、 Videos.list メソッドを使用することをお勧めします。
まず、URLを設定します。このURLを例として使用します: https://www.youtube.com/watch?v=AKiiekaEHhI
part
パラメーターの値を指定する必要があります。あなたの質問から、snippet
、contentDetails
、およびstatistics
の値を渡したいようです(ただし、いいねやビューの場合は、実際に必要なのはstatistics
値)。
次に、動画のid
(この場合はAKiiekaEHhI
、最大50個のカンマ区切りIDを追加できます)とAPIキーを渡します。 URLは次のようになります。
https://www.googleapis.com/youtube/v3/videos?part=contentDetails%2C+snippet%2C+statistics&id=AKiiekaEHhI&key={YOUR_API_KEY}
API Explorer でもこれを行うことができます。
迅速な実装:
// Set up your URL
let youtubeApi = "https://www.googleapis.com/youtube/v3/videos?part=contentDetails%2C+snippet%2C+statistics&id=AKiiekaEHhI&key={YOUR_API_KEY}"
let url = NSURL(string: youtubeApi)
// Create your request
let task = NSURLSession.sharedSession().dataTaskWithURL(url!, completionHandler: { (data, response, error) -> Void in
do {
if let jsonResult = try NSJSONSerialization.JSONObjectWithData(data!, options: NSJSONReadingOptions.AllowFragments) as? [String : AnyObject] {
print("Response from YouTube: \(jsonResult)")
}
}
catch {
print("json error: \(error)")
}
})
// Start the request
task.resume()
Objective-Cの実装:
(この投稿はNSURLSession
をサポートするように編集されています。NSURLConnection
を使用する実装については、編集履歴を確認してください)
// Set up your URL
NSString *youtubeApi = @"https://www.googleapis.com/youtube/v3/videos?part=contentDetails%2C+snippet%2C+statistics&id=AKiiekaEHhI&key={YOUR_API_KEY}";
NSURL *url = [[NSURL alloc] initWithString:youtubeApi];
// Create your request
NSURLRequest *request = [NSURLRequest requestWithURL:url];
// Send the request asynchronously
[[[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *connectionError) {
// Callback, parse the data and check for errors
if (data && !connectionError) {
NSError *jsonError;
NSDictionary *jsonResult = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&jsonError];
if (!jsonError) {
NSLog(@"Response from YouTube: %@", jsonResult);
}
}
}] resume];
ログは次のようになります。
Response from YouTube: {
etag = "\"NO6QTeg0-3ShswIeqLchQ_mzWJs/AAjIATmVK_8ySsAWwEuNfdZdjW4\"";
items = (
{
contentDetails = {
caption = false;
definition = hd;
dimension = 2d;
duration = PT17M30S;
licensedContent = 1;
};
etag = "\"NO6QTeg0-3ShswIeqLchQ_mzWJs/8v8ee5uPZQa1-ucVdjBdAVXzcZk\"";
id = AKiiekaEHhI;
kind = "youtube#video";
snippet = {
categoryId = 20;
channelId = UCkvdZX3SVgfDW8ghtP1L2Ug;
channelTitle = "Swordless Link";
description = "Follow me on Twitter! http://Twitter.com/swordlesslink\n\nFollow me on TwitchTV for live video game streaming! http://Twitch.tv/swordlesslink";
liveBroadcastContent = none;
localized = {
description = "Follow me on Twitter! http://Twitter.com/swordlesslink\n\nFollow me on TwitchTV for live video game streaming! http://Twitch.tv/swordlesslink";
title = "The Legend of Zelda: Majora's Mask With Glitches - Part 17: Going Against the Flow";
};
publishedAt = "2015-05-04T10:01:43.000Z";
thumbnails = {
default = {
height = 90;
url = "https://i.ytimg.com/vi/AKiiekaEHhI/default.jpg";
width = 120;
};
high = {
height = 360;
url = "https://i.ytimg.com/vi/AKiiekaEHhI/hqdefault.jpg";
width = 480;
};
medium = {
height = 180;
url = "https://i.ytimg.com/vi/AKiiekaEHhI/mqdefault.jpg";
width = 320;
};
standard = {
height = 480;
url = "https://i.ytimg.com/vi/AKiiekaEHhI/sddefault.jpg";
width = 640;
};
};
title = "The Legend of Zelda: Majora's Mask With Glitches - Part 17: Going Against the Flow";
};
statistics = {
commentCount = 54;
dislikeCount = 3;
favoriteCount = 0;
likeCount = 265;
viewCount = 6356;
};
}
);
kind = "youtube#videoListResponse";
pageInfo = {
resultsPerPage = 1;
totalResults = 1;
};
} with error: nil
items
キーのオブジェクトは、リクエストに渡した各動画IDの情報の配列になります。
この回答を掘り下げることで、必要な情報を得ることができます。例えば:
if let items = jsonResult["items"] as? [AnyObject]? {
println(items?[0]["statistics"])
}
動画の統計の辞書が表示されます(いいねの数と再生回数を取得できます)。
{
commentCount = 54;
dislikeCount = 3;
favoriteCount = 0;
likeCount = 265;
viewCount = 6356;
}
これと同じアプローチをライブイベントで使用できます。
// Swift 3
func search() {
let videoType = "video you want to search"
// can use any text
var dataArray = [[String: AnyObject]]()
// store videoid , thumbnial , Title , Description
var apiKey = "_________________"
// create api key from google developer console for youtube
var urlString = "https://www.googleapis.com/youtube/v3/search?part=snippet&q=\(videoType)&type=video&videoSyndicated=true&chart=mostPopular&maxResults=10&safeSearch=strict&order=relevance&order=viewCount&type=video&relevanceLanguage=en®ionCode=GB&key=\(apiKey)"
urlString = urlString.addingPercentEncoding( withAllowedCharacters: .urlQueryAllowed)!
let targetURL = URL(string: urlString)
let config = URLSessionConfiguration.default // Session Configuration
let session = URLSession(configuration: config)
let task = session.dataTask(with: targetURL!) {
data, response, error in
if error != nil {
print(error!.localizedDescription)
var alert = UIAlertView(title: "alert", message: "No data.", delegate: nil, cancelButtonTitle: "OK")
alert.show()
return
}
else {
do {
typealias JSONObject = [String:AnyObject]
let json = try JSONSerialization.jsonObject(with: data!, options: []) as! JSONObject
let items = json["items"] as! Array<JSONObject>
for i in 0 ..< items.count {
let snippetDictionary = items[i]["snippet"] as! JSONObject
print(snippetDictionary)
// Initialize a new dictionary and store the data of interest.
var youVideoDict = JSONObject()
youVideoDict["title"] = snippetDictionary["title"]
youVideoDict["channelTitle"] = snippetDictionary["channelTitle"]
youVideoDict["thumbnail"] = ((snippetDictionary["thumbnails"] as! JSONObject)["high"] as! JSONObject)["url"]
youVideoDict["videoID"] = (items[i]["id"] as! JSONObject)["videoId"]
dataArray.append(youVideoDict)
print(dataArray)
// video like can get by videoID.
}
}
catch {
print("json error: \(error)")
}
}
}
task.resume()
}
使い方はとても簡単です。 javascriptから使用できます。npmjsには簡単なモジュールがあります: https://www.npmjs.com/package/youtube-api-es6
そして、私がそのWebで見つけたその参照: https://www.gyanblog.com/gyan/44-youtube-api-nodejs-usage-example