youtube报告api检索外部流量源

yvgpqqbh  于 2021-08-25  发布在  Java
关注(0)|答案(0)|浏览(245)

我的问题是:我想知道是否有可能通过youtube reporting api检索外部源可视化指标。我已经在这个链接中搜索了youtube文档,但到目前为止,我没有得到任何运气,因为它检索到了不同视频的数据,但是没有任何线索显示我不想检索的输出数据。
我所做的:我仔细地遵循文档,以便检索“流量源”报告的信息

content_owner_traffic_source_a2

以及播放列表流量来源:

content_owner_playlist_traffic_source_a1

为了澄清我要查找的是以下数据:youtube studio-->流量源-->外部流量源-->每个外部源的可视化。
我用来检索信息的方法是:


# Call the YouTube Reporting API's media.download method to download the report.

def download_report(youtube_reporting, report_url, local_file):
  request = youtube_reporting.media().download(
    resourceName=' '
  )
  request.uri = report_url
  fh = FileIO(local_file, mode='wb')
  # Stream/download the report in a single request.
  downloader = MediaIoBaseDownload(fh, request, chunksize=-1)

  done = False
  while done is False:
    status, done = downloader.next_chunk()
    if status:
      print ('Download %d%%.' % int(status.progress() * 100))
  print ('Download Complete!')

是否可以检索外部源可视化度量?我在查询报告时是否做错了什么?
我关注的链接:youtube analytics api在尝试生成流量报告时出错,所以urcehttps://developers.google.com/youtube/reporting/v1/code_samples/python

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题