Guest User

Untitled

a guest
Oct 15th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. export function buildMostPopularVideosRequest(amount = 12, loadDescription = false, nextPageToken) {
  2. let fields = 'nextPageToken,prevPageToken,items(contentDetails/duration,id,snippet(channelId,channelTitle,localized/title,publishedAt,thumbnails/medium,title),statistics/viewCount),pageInfo(totalResults)';
  3. if (loadDescription) {
  4. fields += ',items/snippet/description';
  5. }
  6. return buildApiRequest('GET',
  7. '/youtube/v3/videos',
  8. {
  9. part: 'snippet,statistics,contentDetails',
  10. chart: 'mostPopular',
  11. maxResults: amount,
  12. regionCode: 'US',
  13. pageToken: nextPageToken,
  14. fields,
  15. }, null);
  16. }
Add Comment
Please, Sign In to add comment