<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Youtube Connector and Video Titles in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507610#M14644</link>
    <description>&lt;P&gt;Stranger still, we have found that having dims video and day works as long as we put the video ID's as a filter statement. I'm starting to think this is a bug&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JustinRamsey_0-1740662121445.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/177938iA698AE17BB315C32/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JustinRamsey_0-1740662121445.png" alt="JustinRamsey_0-1740662121445.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Feb 2025 13:15:37 GMT</pubDate>
    <dc:creator>JustinRamsey</dc:creator>
    <dc:date>2025-02-27T13:15:37Z</dc:date>
    <item>
      <title>Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2502895#M14516</link>
      <description>&lt;P&gt;Good Afternoon,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am working with pulling data from our company youtube channel. I have the connection established and some metrics pulling in but I am struggling to get data by Video. I would like to know views per video, but whenever I enter video as a dimension in the query I receive a (400) Bad Request error. What do I need to do different to the below script to add in the videos as a dimension (preferably by video title)?&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;YOUTUBE_TEMP:&lt;/DIV&gt;
&lt;DIV&gt;LOAD dim_day as [Report.dim_day],&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_subscribersGained as [Report.metric_subscribersGained],&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_subscribersLost as [Report.metric_subscribersLost],&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_views as [Report.metric_views],&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_averageViewDuration as [Report.metric_averageViewDuration],&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_estimatedMinutesWatched as [Report.metric_estimatedMinutesWatched];&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;SELECT dim_day,&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_subscribersGained,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_subscribersLost,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_views,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_averageViewDuration,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; metric_estimatedMinutesWatched&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;FROM Report&lt;/DIV&gt;
&lt;DIV&gt;WITH PROPERTIES (&lt;/DIV&gt;
&lt;DIV&gt;ids='channel==MINE',&lt;/DIV&gt;
&lt;DIV&gt;startDate='01-01-2012',&lt;/DIV&gt;
&lt;DIV&gt;endDate='01-01-2030',&lt;/DIV&gt;
&lt;DIV&gt;metrics='subscribersGained,subscribersLost,views,averageViewDuration,estimatedMinutesWatched',&lt;/DIV&gt;
&lt;DIV&gt;dimensions='day',&lt;/DIV&gt;
&lt;DIV&gt;filters='',&lt;/DIV&gt;
&lt;DIV&gt;sort='day',&lt;/DIV&gt;
&lt;DIV&gt;maxResults=''&lt;/DIV&gt;
&lt;DIV&gt;);&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 17:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2502895#M14516</guid>
      <dc:creator>JustinRamsey</dc:creator>
      <dc:date>2025-01-24T17:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2504215#M14538</link>
      <description>&lt;P&gt;Hi! try this&lt;/P&gt;
&lt;P&gt;YOUTUBE_TEMP:&lt;BR /&gt;LOAD dim_day as [Report.dim_day], &lt;BR /&gt;dim_video as [Report.dim_video], &lt;BR /&gt;dim_videoTitle as [Report.dim_videoTitle], &lt;BR /&gt;metric_views as [Report.metric_views], &lt;BR /&gt;metric_averageViewDuration as [Report.metric_averageViewDuration], &lt;BR /&gt;metric_estimatedMinutesWatched as [Report.metric_estimatedMinutesWatched];&lt;/P&gt;
&lt;P&gt;SELECT dim_day,&lt;BR /&gt;dim_video,&lt;BR /&gt;dim_videoTitle,&lt;BR /&gt;metric_views,&lt;BR /&gt;metric_averageViewDuration,&lt;BR /&gt;metric_estimatedMinutesWatched&lt;BR /&gt;FROM Report&lt;BR /&gt;WITH PROPERTIES (&lt;BR /&gt;ids='channel==MINE',&lt;BR /&gt;startDate='01-01-2012',&lt;BR /&gt;endDate='01-01-2030',&lt;BR /&gt;metrics='views,averageViewDuration,estimatedMinutesWatched',&lt;BR /&gt;dimensions='day,video,videoTitle',&lt;BR /&gt;filters='',&lt;BR /&gt;sort='day',&lt;BR /&gt;maxResults=''&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If you still encounter a (400) Bad Request, it is worth to double-check:&lt;/P&gt;
&lt;P&gt;That your YouTube Data API is properly authenticated.&lt;BR /&gt;That your channel has sufficient video data available.&lt;BR /&gt;That the query respects API quota limits.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 16:14:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2504215#M14538</guid>
      <dc:creator>diegozecchini</dc:creator>
      <dc:date>2025-02-03T16:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2504226#M14539</link>
      <description>&lt;P&gt;I tried this and still got the Bad Request error. I dont know what else to check with the API connection if I can pull every other dimension but the video titles. Any suggestions on how/what to check?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 17:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2504226#M14539</guid>
      <dc:creator>JustinRamsey</dc:creator>
      <dc:date>2025-02-03T17:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2504434#M14549</link>
      <description>&lt;P&gt;Hi! If I were you I would check API permission&amp;nbsp;(Scopes) Go to OAuth consent screen, and make sure your app has the correct OAuth scopes for youtube data and analytics API:&lt;BR /&gt;&lt;A href="https://www.googleapis.com/auth/youtube.readonly" target="_blank"&gt;https://www.googleapis.com/auth/youtube.readonly&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.googleapis.com/auth/yt-analytics.readonly" target="_blank"&gt;https://www.googleapis.com/auth/yt-analytics.readonly&lt;/A&gt;&lt;BR /&gt;If necessary, add these scopes and reauthenticate your API access.&lt;/P&gt;
&lt;P&gt;To confirm youtub api are enabled go to Enabled APIs &amp;amp; Services and search for&lt;BR /&gt;-YouTube Data API v3 (for video titles)&lt;BR /&gt;-YouTube Analytics API (for video metrics)&lt;/P&gt;
&lt;P&gt;If not enabled, click on them.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 15:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2504434#M14549</guid>
      <dc:creator>diegozecchini</dc:creator>
      <dc:date>2025-02-04T15:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2506386#M14601</link>
      <description>&lt;P&gt;We were able to finally pull the video dim only when we removed the day dimension. Not sure why they both are not compatible in the same load script. Would seem pretty common to want to know video views per day&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2025 14:06:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2506386#M14601</guid>
      <dc:creator>JustinRamsey</dc:creator>
      <dc:date>2025-02-18T14:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2506576#M14609</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;Good to know!&lt;BR /&gt;A possible idea could be YouTube Analytics API may aggregate data differently when multiple dimensions are used.&lt;/P&gt;
&lt;P&gt;A workarounds could be first, to fetch video data (video, videoTitle, views).&lt;BR /&gt;Second, fetch daily aggregated metrics (day, views).&lt;BR /&gt;Then, join the datasets in Qlik. Does it sound good?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 10:55:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2506576#M14609</guid>
      <dc:creator>diegozecchini</dc:creator>
      <dc:date>2025-02-19T10:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507061#M14626</link>
      <description>&lt;P&gt;Theres no common value without the video ID to join the data sets. I mean yes I could download again and get views over time but still would not be able to filter on the individual videos&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 13:25:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507061#M14626</guid>
      <dc:creator>JustinRamsey</dc:creator>
      <dc:date>2025-02-24T13:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507610#M14644</link>
      <description>&lt;P&gt;Stranger still, we have found that having dims video and day works as long as we put the video ID's as a filter statement. I'm starting to think this is a bug&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JustinRamsey_0-1740662121445.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/177938iA698AE17BB315C32/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JustinRamsey_0-1740662121445.png" alt="JustinRamsey_0-1740662121445.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 13:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507610#M14644</guid>
      <dc:creator>JustinRamsey</dc:creator>
      <dc:date>2025-02-27T13:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507653#M14646</link>
      <description>&lt;P&gt;Thanks for sharing, it is strange indeed&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 14:50:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2507653#M14646</guid>
      <dc:creator>diegozecchini</dc:creator>
      <dc:date>2025-02-27T14:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Youtube Connector and Video Titles</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2542844#M15385</link>
      <description>&lt;P data-start="0" data-end="260"&gt;Yeah, that 400 error usually pops up because some metrics and dimensions don’t mix well — video-level data often needs &lt;CODE data-start="119" data-end="126"&gt;video&lt;/CODE&gt; or &lt;CODE data-start="130" data-end="141"&gt;video==ID&lt;/CODE&gt; filters and compatible metrics. Try querying by &lt;CODE data-start="190" data-end="197"&gt;video&lt;/CODE&gt; as the dimension with a shorter date range or per-video IDs.&lt;/P&gt;
&lt;P data-start="262" data-end="381" data-is-last-node="" data-is-only-node=""&gt;Also funny how&lt;FONT color="#000000"&gt;&lt;A href="https://theytpremiumapk.com/" target="_self"&gt; YouTube&lt;/A&gt; &lt;/FONT&gt;gives so much detail for YouTube Premium stats but makes basic video queries tricky sometimes&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 06:09:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Youtube-Connector-and-Video-Titles/m-p/2542844#M15385</guid>
      <dc:creator>hooram95</dc:creator>
      <dc:date>2026-02-13T06:09:41Z</dc:date>
    </item>
  </channel>
</rss>

