从youtube视频获取评论 - GData objective-c

时间:2012-02-17 03:52:04

标签: iphone objective-c ios youtube gdata

我正在开发一个需要使用YouTube的iPhone应用程序..我想知道如何从视频中获取评论?我环顾四周但没有运气...对不起,如果这个问题有点开放

3 个答案:

答案 0 :(得分:1)

您应该检查YouTube API。在此API Video comments feed可用。

答案 1 :(得分:0)

Objective-C library for Google Data APIs

其中包含显示如何使用YouTube数据API的sample application

答案 2 :(得分:0)

GDataEntryYouTubeVideo * video = {your video entry here};

GDataServiceGoogleYouTube * youtubeService = [[GDataServiceGoogleYouTube alloc] init];

youtubeService.userAgent = @"App Name";
youtubeService.youTubeDeveloperKey = @"your developer key";

GDataQueryYouTube * query = [[GDataQueryYouTube alloc] init];

query.startIndex = 1;
query.maxResults = 50;
query.feedURL = video.comment.feedLink.URL;

[youtubeService fetchFeedWithQuery:query
                      completionHandler:^(GDataServiceTicket *ticket, GDataFeedBase *feed, NSError *error)
{
    if(error)
    {
        return;
    }

    GDataFeedYouTubeComment * commentFeed = (GDataFeedYouTubeComment*)feed;

    NSArray * comments = feed.entries;
}];