34

ユーザーがアップロードしたビデオをV3APIに一覧表示するにはどうすればよいですか?

4

2 に答える 2

41

クライアントを使用している場合、Gregの答えは正しいです。基本的なリクエストで同じことを行うには、次の2つのリクエストを行います。

  1. GET https://www.googleapis.com/youtube/v3/channels

    パラメータ付き:

    part=contentDetails
    mine=true
    key={YOUR_API_KEY}
    

    およびヘッダー:

    Authorization:  Bearer {Your access token}
    

    これから、次のようなJSON応答が得られます。

    {
     "kind": "youtube#channelListResponse",
     "etag": "\"some-string\"",
     "pageInfo": {
      "totalResults": 1,
      "resultsPerPage": 1
     },
     "items": [
      {
       "id": "some-id",
       "kind": "youtube#channel",
       "etag": "\"another-string\"",
       "contentDetails": {
        "relatedPlaylists": {
         "likes": "channel-id-for-your-likes",
         "favorites": "channel-id-for-your-favorites",
         "uploads": "channel-id-for-your-uploads",
         "watchHistory": "channel-id-for-your-watch-history",
         "watchLater": "channel-id-for-your-watch-later"
        }
       }
      }
     ]
    }
    

    これから、「アップロード」チャネルIDを解析する必要があります。

  2. GET https://www.googleapis.com/youtube/v3/playlistItems

    パラメータ付き:

    part=snippet
    maxResults=50
    playlistId={YOUR_UPLOAD_PLAYLIST_ID}
    key={YOUR_API_KEY}
    

    およびヘッダー:

    Authorization:  Bearer {YOUR_TOKEN}
    

    これから、次のようなJSON応答を受け取ります。

    {
     "kind": "youtube#playlistItemListResponse",
     "etag": "\"some-string\"",
     "pageInfo": {
      "totalResults": 1,
      "resultsPerPage": 50
     },
     "items": [
      {
    
       "id": "some-id",
       "kind": "youtube#playlistItem",
       "etag": "\"another-string\"",
       "snippet": {
        "publishedAt": "some-date",
        "channelId": "the-channel-id",
        "title": "video-title",
        "thumbnails": {
         "default": {
          "url": "thumbnail-address"
         },
         "medium": {
          "url": "thumbnail-address"
         },
         "high": {
          "url": "thumbnail-address"
         }
        },
        "playlistId": "upload-playlist-id",
        "position": 0,
        "resourceId": {
         "kind": "youtube#video",
         "videoId": "the-videos-id"
        }
       }
      }
     ]
    }
    

この方法を使用すると、任意の言語を使用して、または単にカールして情報を取得できるはずです。最初の50を超える結果が必要な場合は、2番目のリクエストを使用して複数のクエリを実行し、ページリクエストを渡す必要があります。詳細については、http://developers.google.com/youtube/v3/docs/playlistItems/listをご覧ください。

于 2012-11-26T17:20:39.407 に答える
33

最初のステップは、そのユーザーのチャネルIDを取得することです。サービスへのリクエストでこれを行うことができますChannels。これがJSの例です。

var request = gapi.client.youtube.channels.list({
  // mine: true indicates that we want to retrieve the channel for the authenticated user.
  mine: true,
  part: 'contentDetails'
});
request.execute(function(response) {
  playlistId = response.result.channels[0].contentDetails.uploads;
});

再生リストIDを取得したら、それを使用して、PlaylistItemsサービスからアップロードされた動画のリストを照会できます。

var request = gapi.client.youtube.playlistItems.list({
  playlistId: playlistId,
  part: 'snippet',
});
request.execute(function(response) {
  // Go through response.result.playlistItems to view list of uploaded videos.
});
于 2012-10-17T17:12:56.223 に答える