0

This is Excel macro homework. The task is to display a YouTube video channel name, based on URL. Let's say we have column A (each cell is separate video URL) and column B in which I want to display names.

I know that by using this code:

https://www.googleapis.com/youtube/v3/videos?id=<video_id>&key=<YOUR_API_KEY>&part=snippet

I can display basic data which includes "channelTitle" variable. But how do I display only channel title?

johnnyRose
  • 7,310
  • 17
  • 40
  • 61
Paweł Skaba
  • 671
  • 1
  • 17
  • 49

1 Answers1

1

https://developers.google.com/youtube/v3/getting-started#part

I'd say fields = channelTitle. Play around with it little or parse the json in VBA macro: Parsing JSON in Excel VBA

Community
  • 1
  • 1
online Thomas
  • 8,864
  • 6
  • 44
  • 85