SlideShare uma empresa Scribd logo
1 de 27
Baixar para ler offline
Ad Hoc Analysis with Apps Script 
and YouTube Analytics API 
Arun Nagarajan, Apps Script Developer Advocate, Google 
Christoph Schwab-Ganser, YouTube Analytics API Lead, Google
1 billion viewers!
Petabytes of analytics...
PSiamckpaligfye,, aauuttoommaattee,, sshhaarree
Agenda 
● Google Apps Script 
● YouTube Analytics 
● YouTube Analytics API 
● YouTube Analytics API + Google Apps Script 
Do more with YouTube Analytics
What is Google Apps Script? 
script.google.com
What is Google Apps Script
Apps Script Example 
Export Gmail messages to Google Docs
Google Apps Script 
Google Products 
Calendar 
Charts 
Contacts 
Drive 
Documents 
Domain 
Finance 
Gmail 
Groups 
Language 
Maps 
Sites 
Spreadsheets 
Communication and UI 
Content 
Html 
Jdbc 
Mail 
Soap 
Ui 
UrlFetch 
Xml 
Utilities 
Base 
Cache 
Lock 
Properties 
Script 
ScriptDb 
Utilities 
● Write code in browser 
● Run code on Google servers 
● Integrate with other systems
What is YouTube Analytics? 
youtube.com/analytics
Helping YouTube Creators in Making Decisions 
● Collect user events of all YouTube videos 
● Aggregate them up to the level of channels, 
partners, and shows 
● Provide UI for owners www.youtube.com/analytics
What is the YouTube Analytics API? 
● Enable developers to provide services for YouTube 
channels and partners 
● Allow partners to customize and integrate their video 
reporting 
● Public API based on same pre-aggregated data as UI 
● Requires precise queries: Give me views and likes of 
video XYZ over the last 30 days 
● Requests must be authorized by the owner using 
OAuth2 
● Account Types: YouTube Channels and Partners
How to Drill into the Data? 
● Dimensions, Metrics, Filters, and Report 
● Dimensions: Criteria to group the data 
● Day the event occurred 
● Country the event originated from 
● Metrics: Measurement of user activity 
● User viewing a video 
● User subscribing to your channel 
● Filters: Limit the data included in the computation 
● Only events from Italy 
● Only playbacks from embedded player 
● Report: Combination of Dimensions, Metrics, and 
Filters 
● Metrics: views, likes 
Dimension: day 
Filter: channel==XYZ
Check Documentation developers.google. 
com/youtube/analytics 
API Explorer 
● Channel level: Basic metrics 
Need a Sample?
More Details on the YouTube Analytics API?
YouTube Analytics + Apps Script
Turn data into applications and UI 
{ JSON 
"kind": "youtubeAnalytics#resultTable", 
"columnHeaders": [ 
{ 
"name": "day", 
"columnType": "DIMENSION", 
"dataType": "STRING" 
}, 
... 
], 
"rows": [ 
[ "2013-03-30", 876036, 7 ], 
[ "2013-03-29", 173666, 2 ], 
[ "2013-03-28", 273552, 4 ], 
... 
] 
}
Do more with YouTube Analytics 
Using Google Apps Script 
Build 
Share 
Automate 
Integrate
Build - Load data into spreadsheet 
● Invoke Apps Script function via Menu or "button" 
● Create new tabs or append to current spreadsheet 
● Formatting capability 
● Pre-defined reports or dynamic inputs
Share - Custom analytics 
● Turn tabular data into charts with 2 clicks 
● Build charts dynamically using ChartBuilder API 
● Allows business users to view data without full access 
● Publish as gadget in Google Sites 
● Simple layer on to restrict access to full data
Automate - Get alerts on interesting events 
● Apps Script functions can be scheduled 
● Store previous run settings 
● Compare arbitrary data points against thresholds 
● Send email or create calendar events for alerts
Integrate - YouTube Analytics + Other sources 
● Co-relate YouTube data with other systems 
● Twitter - simple example to check trending info 
● Weather 
● Stock Market 
● Holiday calendar 
● Other internal events?
Do more with YouTube Analytics 
Using Google Apps Script 
Build - reports by enabling data into Google Sheets 
Share - via Google Sites or push email messages 
Automate - schedule scripts to check and notify of insights 
Integrate - with other analytics and data sources
Technical details 
● UrlFetch 
● Access 3rd party APIs via standard HTTP 
● Learn more at - https://developers.google.com/apps-script/reference/url-fetch/ 
● OAuth 2 
● Apps Script allows for scripts to be deployed as Web Apps - required for OAuth 2 callback 
● Learn more at - http://youtu.be/VVhsK5jH6u8 
● Triggers 
● Allow for Apps Script functions to be run at specified interval 
● Have full access to Apps Script API (Gmail, Sheets, Drive, etc.) 
● Learn more at - https://developers.google.com/apps-script/execution_time_triggers 
● Quota Management 
● All Google accounts have access to Apps Script services 
● Google Apps for Business accounts have increased quota 
● Learn more at - https://script.google.com/dashboard
Get started! 
● script.google.com 
● github.com/entaq/GoogleAppsScript 
● developers.google.com/youtube/analytics 
● developers.google.com/apps-script 
● stackoverflow.com/questions/tagged/youtube-api 
● stackoverflow.com/questions/tagged/google-apps-script 
Arun Nagarajan - google.com/+ArunNagarajan 
Christoph Schwab-Ganser -google.com/+ChristophGanser
Ad hoc YouTube Analytics with Google Apps Script

Mais conteúdo relacionado

Mais de Arun Nagarajan

Google Maps on iOS with Swift
Google Maps on iOS with SwiftGoogle Maps on iOS with Swift
Google Maps on iOS with SwiftArun Nagarajan
 
Battery Efficient Location Services
Battery Efficient Location ServicesBattery Efficient Location Services
Battery Efficient Location ServicesArun Nagarajan
 
CheckMark - Code the Deal hackathon
CheckMark - Code the Deal hackathonCheckMark - Code the Deal hackathon
CheckMark - Code the Deal hackathonArun Nagarajan
 
Mongo DB Hackday Apr 28 2012
Mongo DB Hackday Apr 28 2012Mongo DB Hackday Apr 28 2012
Mongo DB Hackday Apr 28 2012Arun Nagarajan
 
Integrate Google Drive with Google Apps Script
Integrate Google Drive with Google Apps ScriptIntegrate Google Drive with Google Apps Script
Integrate Google Drive with Google Apps ScriptArun Nagarajan
 
Android L Preview - Recents Screen + API
Android L Preview  - Recents Screen + APIAndroid L Preview  - Recents Screen + API
Android L Preview - Recents Screen + APIArun Nagarajan
 
node.js on Google Compute Engine
node.js on Google Compute Enginenode.js on Google Compute Engine
node.js on Google Compute EngineArun Nagarajan
 

Mais de Arun Nagarajan (9)

Google Maps on iOS with Swift
Google Maps on iOS with SwiftGoogle Maps on iOS with Swift
Google Maps on iOS with Swift
 
Animations & swift
Animations & swiftAnimations & swift
Animations & swift
 
Battery Efficient Location Services
Battery Efficient Location ServicesBattery Efficient Location Services
Battery Efficient Location Services
 
CheckMark - Code the Deal hackathon
CheckMark - Code the Deal hackathonCheckMark - Code the Deal hackathon
CheckMark - Code the Deal hackathon
 
Mongo DB Hackday Apr 28 2012
Mongo DB Hackday Apr 28 2012Mongo DB Hackday Apr 28 2012
Mongo DB Hackday Apr 28 2012
 
Integrate Google Drive with Google Apps Script
Integrate Google Drive with Google Apps ScriptIntegrate Google Drive with Google Apps Script
Integrate Google Drive with Google Apps Script
 
Android L Preview - Recents Screen + API
Android L Preview  - Recents Screen + APIAndroid L Preview  - Recents Screen + API
Android L Preview - Recents Screen + API
 
CloudKit
CloudKitCloudKit
CloudKit
 
node.js on Google Compute Engine
node.js on Google Compute Enginenode.js on Google Compute Engine
node.js on Google Compute Engine
 

Último

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 

Último (20)

GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 

Ad hoc YouTube Analytics with Google Apps Script

  • 1.
  • 2. Ad Hoc Analysis with Apps Script and YouTube Analytics API Arun Nagarajan, Apps Script Developer Advocate, Google Christoph Schwab-Ganser, YouTube Analytics API Lead, Google
  • 6. Agenda ● Google Apps Script ● YouTube Analytics ● YouTube Analytics API ● YouTube Analytics API + Google Apps Script Do more with YouTube Analytics
  • 7. What is Google Apps Script? script.google.com
  • 8. What is Google Apps Script
  • 9. Apps Script Example Export Gmail messages to Google Docs
  • 10. Google Apps Script Google Products Calendar Charts Contacts Drive Documents Domain Finance Gmail Groups Language Maps Sites Spreadsheets Communication and UI Content Html Jdbc Mail Soap Ui UrlFetch Xml Utilities Base Cache Lock Properties Script ScriptDb Utilities ● Write code in browser ● Run code on Google servers ● Integrate with other systems
  • 11. What is YouTube Analytics? youtube.com/analytics
  • 12. Helping YouTube Creators in Making Decisions ● Collect user events of all YouTube videos ● Aggregate them up to the level of channels, partners, and shows ● Provide UI for owners www.youtube.com/analytics
  • 13. What is the YouTube Analytics API? ● Enable developers to provide services for YouTube channels and partners ● Allow partners to customize and integrate their video reporting ● Public API based on same pre-aggregated data as UI ● Requires precise queries: Give me views and likes of video XYZ over the last 30 days ● Requests must be authorized by the owner using OAuth2 ● Account Types: YouTube Channels and Partners
  • 14. How to Drill into the Data? ● Dimensions, Metrics, Filters, and Report ● Dimensions: Criteria to group the data ● Day the event occurred ● Country the event originated from ● Metrics: Measurement of user activity ● User viewing a video ● User subscribing to your channel ● Filters: Limit the data included in the computation ● Only events from Italy ● Only playbacks from embedded player ● Report: Combination of Dimensions, Metrics, and Filters ● Metrics: views, likes Dimension: day Filter: channel==XYZ
  • 15. Check Documentation developers.google. com/youtube/analytics API Explorer ● Channel level: Basic metrics Need a Sample?
  • 16. More Details on the YouTube Analytics API?
  • 17. YouTube Analytics + Apps Script
  • 18. Turn data into applications and UI { JSON "kind": "youtubeAnalytics#resultTable", "columnHeaders": [ { "name": "day", "columnType": "DIMENSION", "dataType": "STRING" }, ... ], "rows": [ [ "2013-03-30", 876036, 7 ], [ "2013-03-29", 173666, 2 ], [ "2013-03-28", 273552, 4 ], ... ] }
  • 19. Do more with YouTube Analytics Using Google Apps Script Build Share Automate Integrate
  • 20. Build - Load data into spreadsheet ● Invoke Apps Script function via Menu or "button" ● Create new tabs or append to current spreadsheet ● Formatting capability ● Pre-defined reports or dynamic inputs
  • 21. Share - Custom analytics ● Turn tabular data into charts with 2 clicks ● Build charts dynamically using ChartBuilder API ● Allows business users to view data without full access ● Publish as gadget in Google Sites ● Simple layer on to restrict access to full data
  • 22. Automate - Get alerts on interesting events ● Apps Script functions can be scheduled ● Store previous run settings ● Compare arbitrary data points against thresholds ● Send email or create calendar events for alerts
  • 23. Integrate - YouTube Analytics + Other sources ● Co-relate YouTube data with other systems ● Twitter - simple example to check trending info ● Weather ● Stock Market ● Holiday calendar ● Other internal events?
  • 24. Do more with YouTube Analytics Using Google Apps Script Build - reports by enabling data into Google Sheets Share - via Google Sites or push email messages Automate - schedule scripts to check and notify of insights Integrate - with other analytics and data sources
  • 25. Technical details ● UrlFetch ● Access 3rd party APIs via standard HTTP ● Learn more at - https://developers.google.com/apps-script/reference/url-fetch/ ● OAuth 2 ● Apps Script allows for scripts to be deployed as Web Apps - required for OAuth 2 callback ● Learn more at - http://youtu.be/VVhsK5jH6u8 ● Triggers ● Allow for Apps Script functions to be run at specified interval ● Have full access to Apps Script API (Gmail, Sheets, Drive, etc.) ● Learn more at - https://developers.google.com/apps-script/execution_time_triggers ● Quota Management ● All Google accounts have access to Apps Script services ● Google Apps for Business accounts have increased quota ● Learn more at - https://script.google.com/dashboard
  • 26. Get started! ● script.google.com ● github.com/entaq/GoogleAppsScript ● developers.google.com/youtube/analytics ● developers.google.com/apps-script ● stackoverflow.com/questions/tagged/youtube-api ● stackoverflow.com/questions/tagged/google-apps-script Arun Nagarajan - google.com/+ArunNagarajan Christoph Schwab-Ganser -google.com/+ChristophGanser