Questions tagged [youtube-data-api]

YouTube Data API used for getting details of YouTube contents like Playlist, Playlistitems and video's details! You need to generate a YouTube Data API Developer Key to access the content available on YouTube Data API.

YouTube Data API

The tag is generalized version of tag.

References

4420 questions
34
votes
2 answers

YouTube API v3 - List uploaded videos

How do I list the user's uploaded videos in the V3 api?
efic1
  • 490
  • 1
  • 4
  • 9
30
votes
11 answers

How to check if YouTube channel is streaming live

I can't find any informations to check if a YouTube channel is actually streaming or not. With Twitch you just need the channel name, and with the API you can check if there is a live or not. I don't want to use OAuth, normally a public API key is…
mpgn
  • 7,121
  • 9
  • 67
  • 100
29
votes
1 answer

Youtube API 3 get latest videos

So I am trying to grab 10 latest videos from user uploads. Now the only problem is that the only date visible in the playlistitems request is publishedAt which is the date when the video was uploaded - not the date of when it was made public, which…
Proqb
  • 335
  • 1
  • 3
  • 7
28
votes
3 answers

Access Not Configured. YouTube Data API has not been used in project 608941808256

I have enabled YouTube data API and Google+ API for my project and change the Android API Key in Auth.java I also entered my playlist info into Constants.java. However I still get this unhelpful…
AbhiRam
  • 2,033
  • 7
  • 41
  • 94
28
votes
2 answers

Youtube Data API with OAuth2.0 on Android

I'm trying to use the YouTubeData API with OAuth 2.0 authentication on Android, and i'm kind of struggling with it. I've searched a lot online, but there's not much help for the Android implementation. First of all, it's not clear to me what's the…
27
votes
6 answers

YouTube quotas exceeded

I'm developer and I want to upload a video using the YouTube Data API v3, but it always return the error code "quotas exceeded". I never succeeded upload a video so it's strange... Do you have a solution for this problem or support address mail to…
Nicolas
  • 5,249
  • 3
  • 19
  • 20
26
votes
5 answers

Youtube Video title with API v3 without API key?

Is it possible to get the video title using the video ID with API v3 without the API key? I could not find any information or example of getting the title in the API documentation.
sam
  • 1,027
  • 3
  • 11
  • 21
23
votes
8 answers

YouTube embed showinfo has been deprecated

We are using a YouTube video on our website as a hero banner. However few days ago it started showing it's title, watch later button and a share button. We were able to hide them using &showinfo=0 at the end if the URL. I found out that showinfo has…
Daut
  • 2,537
  • 1
  • 19
  • 32
22
votes
2 answers

The request cannot be completed because you have exceeded your quota

I tried to use the javascript MediaUploader.js to upload youtube video to my own account, for some reason, I got this error in onError function: "errors": [ { "domain": "youtube.quota", "reason": "quotaExceeded", "message": "The…
Geo
  • 253
  • 2
  • 4
  • 6
21
votes
2 answers

Is youtube data api totally free

I am going to implement a python client that search videos on youtube with different queries. Apparently I should use youtube data api for this. Even though I read quata cost I just want to be sure that using youtube api is totally free of charge.…
PHA
  • 1,588
  • 5
  • 18
  • 37
21
votes
2 answers

Error: "message": "Login Required" when use Youtube Analytics API

I am working with youtube api. when I hit this url "https://www.googleapis.com/youtube/analytics/v1/reports?ids=channel%3D%3DMINE&start-date=2015-01-01&end-date=2016-01-31&metrics=likes%2Cdislikes&key={API Key}" it gives 401 { "error": { …
20
votes
1 answer

How to upload to a specific YouTube channel of the same account? (YouTube Data API)

I am managing a Google account and it has a YouTube channel connected to a Google+ profile, and a YouTube channel connected to a Google+ page. Using a OAuth key of this account, I want to upload videos to the "page"'s channel, so far I've only…
Martyn
  • 6,031
  • 12
  • 55
  • 121
20
votes
4 answers

How to get watched history of YouTube user using Youtube JavaScript API?

I am able to get search results, playlists of an user using YouTube Javascript API. How can I get the watched history of an user using YouTube JavaScript API??? Is there any JavaScript API to get the YouTube watched history of an user??
user3062437
  • 347
  • 1
  • 2
  • 14
20
votes
1 answer

YouTube Cards API

I am wondering if anybody has any information or news regarding the API (if it exists yet?) of the new YouTube Cards (replacing the old annotations). Is there any beta api information out yet? I'm referring to this: Thank you for your help
rails_has_elegance
  • 1,590
  • 4
  • 21
  • 37
20
votes
2 answers

Retrieving individual videos view count - Youtube API V3.0 - JavaScript

I've been trying to get the view count on videos that I query through the following method: function search() { var request = gapi.client.youtube.search.list({ part: 'snippet', channelId: 'IRRELEVANT', …