4,526 questions
1
vote
1
answer
951
views
Extract the number of views/revenue for a specific video (Youtube CMS)?
My friend works as a CMS admin for a Youtube Network and asked me if there is a way to automatically extract the number of views and the revenue for specific videos. Let me explain. If some people ...
2
votes
3
answers
2k
views
Youtube API get share count for video with specified ID
I'm trying to find out a way to get share count for youtube video with for it id. reading Youtube API specification did not give any results.
Can I get share count for video?
On youtube site on video ...
2
votes
1
answer
421
views
YouTube Video List method showing error
https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails,player,recordingDetails,statistics,status&id=-Ji6qekcLxM,-rJOifcv3HA,0CN5MvWQwac,0xZLb7zjel8,1JAWiDZbkI0,1TIzLB_L8lk,2Eh08z-...
0
votes
1
answer
5k
views
Youtube Data API v2 : How to get videos of English language only?
I am trying to build a website based on youtube embedded videos.
For this I am using Youtube Data API v2.
With this I am getting videos but the problem is with the "language" used in videos or the ...
5
votes
2
answers
3k
views
YouTube API v3 filtering embeddable videos
In YouTube API v3 documentation there are parameters like regionCode, videoEmbeddable, videoSyndicated. But it seems none of them are working properly. I want to exclude VEVO videos from my search ...
0
votes
1
answer
395
views
Creating YT player for multiple video resources retrieved with Data API V3
I've spent the better part of the day reading docs and watching various videos on how to embed YouTube on my site, and have made some good progress. But am now a bit stuck.
I'm working on a site ...
0
votes
2
answers
1k
views
What is youtube policy for video-id?
I am crawling youtube videos using following url:
URL : https://gdata.youtube.com/feeds/api/videos?category="category_term"
I parse above obtained response to get the video Id's.
Now I want to ...
2
votes
2
answers
4k
views
Like video with access token on YouTube using YouTube Data API v3?
I want to like video of YouTube.
I have acquired AUTH_TOKEN using AccountManager
using the following
am.getAuthToken(mAccount, AUTH_TOKEN_TYPE, null, this, new AccountManagerCallback<Bundle>()...
83
votes
9
answers
91k
views
Retrieve all videos from youtube playlist using youtube v3 API
I'm retrieving videos of a playlist using youtube v3 API and getting 50 items without any problem with this link:-
https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&...
5
votes
0
answers
2k
views
A Task was Canceled - ResumeableUpload.cs: line 362
For almost the past 24 hours, I have been receiving TaskCanceledExceptions as the result of calls to ResumeableUpload's UploadAsync. Uploads are failing probably 90% of the time. I am uploading videos ...
1
vote
1
answer
2k
views
Resume upload using java youtube API
I am trying to upload a video to YouTube using the Java API like this:
private Video uploadVideo(final YouTube youtube, final Video video, final InputStreamContent mediaContent)
...
5
votes
1
answer
27k
views
Youtube API v3 search for videos, retrieve title and url
How can you search for youtube-movies and get the id/url and the title from it? It's to add them to a BaseAdapter-class in an Android Application.
In the second version of the API, it was possible: ...
1
vote
5
answers
6k
views
Youtube API key - accessNotConfigured error
I registered my application with YouTube for an Android app, and got an API key. And then I tried to make an api call through my browser to try it like this:
https://www.googleapis.com/youtube/v3/...
2
votes
2
answers
970
views
can't list my own Youtube videos
I'm trying to get a list of the videos I've posted in YouTube
When using the explorer:
https://developers.google.com/youtube/v3/docs/search/list
it generated following query
GET https://www....
2
votes
1
answer
917
views
Error while using part="...,processingDetails" in a youtube.videos.insert() request
We're developing in java 7 and YouTube Data API v3.
When we are calling the upload service with "processingDetails" part, we are getting a 503 Service Unavailable Error. What are we doing wrong? ...
4
votes
0
answers
1k
views
Youtube API : Service account
I need help for YouTube API. I guess that I have to use service account because I need more then 10 users use same account. I am not sure why I get empty items list for playlists request. Should I ...
15
votes
1
answer
7k
views
Is there a way to get the "Watch Later" playlist using YouTube API v3?
I was wondering if this is available in v3 (I know it's possible with v2)?
I've tried using watch_later as the id and mine=true in a playlist request. The watch_later playlist is not returned in ...
118
votes
8
answers
145k
views
How do I get video durations with YouTube API version 3?
I'm using YouTube API v3 to search YouTube.
https://developers.google.com/youtube/v3/docs/search
As you can see, the response JSON doesn't contains video durations. Is there way to get video ...
64
votes
3
answers
113k
views
How can I calculate my YouTube API usage?
I'm building a pretty large app for a client that is going to aggregate feeds from various sources. My client estimates around 900 follow-able users will be in this system to start out, with more ...
0
votes
2
answers
3k
views
YouTube search url for searching username and keywords; and sort results by rating
I have a script that will display the json results of a youtube search. The following url will not sort though it does return the results provided I put in a username into username.
http://gdata....
34
votes
2
answers
34k
views
YouTube API v3 - List uploaded videos
How do I list the user's uploaded videos in the V3 api?
6
votes
3
answers
7k
views
How do I fetch youtube title and description from given url using python code?
How do I fetch youtube title and description from python code from the given url. Is it necessory to use youtube API for it? I am writing a program which need to find generate title and description ...
5
votes
2
answers
23k
views
How to retrieve YouTube video information (title, author, etc) by its id using YouTube API
Can anybody suggest how to do it or where to learn about how to do it.
1
vote
3
answers
5k
views
How to parse YouTube returned date to timestamp?
YouTube returns the Updated date and Submitted on date as follows: 2010-08-22T04:46:18.000Z
Is there a PHP function, or a date mask that parses this?
2853
votes
31
answers
2.1m
views
How do I get a YouTube video thumbnail from the YouTube API?
If I have a YouTube video URL, is there any way to use PHP and cURL to get the associated thumbnail from the YouTube API?
5
votes
1
answer
4k
views
YouTube API Comments Feed
I am attempting to get the Comments Feed from a video entry using the YouTube API for .NET. I am working on a program in WPF and C#, but can't seem for the life of me to figure out how to retrieve ...