youtube-data-api

How can I search the channel in a specific country using the YouTube API 3.0?

一曲冷凌霜 提交于 2019-12-07 14:47:42
问题 I use the url to search channels in a specific country like this https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=8&order=viewCount&q=news&type=channel&regionCode=US&key=API-Key . But when i changed the regionCode parameter to IT(italy) or any other one,the search result is always identical.So the search result is not changed with the regionCode. How can I search the channel by country using the YouTube API 3.0,thanks. 回答1: I also try to search channel with the optional

YouTube Data API v3 Comment Thread Discrepency

会有一股神秘感。 提交于 2019-12-07 10:51:39
问题 I have been trying to get a list of comments out using the new V3 Data API with mixed results. For some videos, you only get a subset of comments out. I have noticed this on a few videos, but for this specific case I will use video ID = U55NGD9Jm7M You can find all the comments on this video in the WebUI here: https://www.youtube.com/all_comments?v=U55NGD9Jm7M At the time of posting, there were 5,499 comments on this video. API Results : When querying https://www.googleapis.com/youtube/v3

Does using the YouTube Data Api generate any cost?

假装没事ソ 提交于 2019-12-07 03:43:40
问题 I was wondering if the use of the YouTube Data Api gerneate any costs(money which must be payed to google). I was only able to find the "unit-system" which is used by youtube to limit the amount of requests? 回答1: In addition to the answer by DaImTo I can add that if you don't need all of the YouTube API functionality (e.g. you only need to get video titles and thumbnails or something like that) then you don't need to be worried about the API restrictions at all, and you don't even need to use

Youtube Data API V3 - No Video url

若如初见. 提交于 2019-12-06 18:05:21
问题 I am using youtube data api version 3, to get the top youtube videos, i am calling the REST api like this: https://developers.google.com/apis-explorer/#p/youtube/v3/youtube.search.list?part=snippet&forMine=true&maxResults=10&order=viewCount&type=video&_h=6& and get the data like this is json format: "kind": "youtube#searchResult", "etag": "adasdasdasdasdas", "id": { "kind": "youtube#video", "videoId": "123123asdsad12" }, "snippet": { "publishedAt": "date", "channelId": "Gasdqqweqweqwr123123",

Start YTPlayerView in full screen on iPad

懵懂的女人 提交于 2019-12-06 17:50:27
I am using YTPlayerView iOS class which is provided by Youtube and you can check it here . The problem is the following: on iPhone the video automatically starts in full screen while on iPad it doesn't, and I need to start it in full screen by default. For anyone who is facing this problem, I solved it by dropping this class and using XCDYoutubeKit, it solved my issue but I had to drop the separate UI where I used my player. https://github.com/0xced/XCDYouTubeKit It's also available through cocoapods Yestay Muratov Add this code, so on iPhone it will not start to play on full screen: var

youtube.search.list does not return any items after 9 pages

左心房为你撑大大i 提交于 2019-12-06 16:16:30
I want to get a list of many youtube Channels. After i got around 400 results (8 pages x 50 results/page), i call the 8th oder 9th page via: GET https://www.googleapis.com/youtube/v3/search?part=id&maxResults=50&pageToken=CJADEAE&type=channel&key= {YOUR_API_KEY} i get only 16 results and from this point on the next 10 (or something) nextPageTokens return no items at all and after the 19th nextPageToken there is not even a nextPageToken in the response. Nevertheless the query says "totalResults": 1000000, "resultsPerPage": 50. Is this a bug or am I doing something wrong? The serch call is

Google API Youtube V3 - Quota runs in no time

笑着哭i 提交于 2019-12-06 15:59:25
I'm building app that uses Google Youtube Data API V3 Everything is fine, except before I'm able to test app I run out of quota. So hence my question is if I'm doing something wrong? Seems like daily quota does not allow me to query more than 100 search queries. Which seems odd, cause even if trying to develop any kind of web app that uses API, I run out of quota and can't do anything in no time. From what I found over quota calculators, a search is worth 100 points or so. If I were to finish my App, then trying to release it to people would mean it will stop working after first few searches.

How to find 360° videos using Youtube Data API

孤街浪徒 提交于 2019-12-06 14:51:54
I am looking for a way to find all of the 360° videos from Youtube using Youtube APIs for my research. Currently I haven't been able to find this feature from the Youtube APIs, or hack a work-around using available API functions. Search results on Yuotube webpage can be filtered by featureto just show the 360° videos among the search results. Even replicating this functionality using available API methods would be a good starting point to my needs. Maybe this could be accomplished by using snippet's tags, but I haven't been able to make it work. (This question is quite similar ;-) to :

Our application uploads hundreds of videos per day using the YouTube API, but now getting quota exceeded errors

天大地大妈咪最大 提交于 2019-12-06 13:47:22
问题 My application allows users to "link" their YouTube accounts to our system and then we allow them to upload videos to their channels both automatically in some cases, and on an "upload" action on their part. We have hundreds of videos being uploaded because we have thousands of users that use our system. Today I saw hundreds of errors in my application when our batch automatic upload job was running. The errors were for: quotaExceeded, video upload limit reached. My API quotas are very high

Can I schedule YouTube videos for release via the API? And other 'limited' feature questions

情到浓时终转凉″ 提交于 2019-12-06 13:27:45
问题 There are several features on YouTube which channels earn access to by remaining in good standing for period of time, and by meeting other (unpublished) criteria. All of the following situations would require a user to be authenticated. These features include: Ability to upload Custom Thumbnails Ability to schedule videos for release These don't appear in online documentation anywhere nor can I find questions asking about them here on stack overflow. Are they supported by the API currently,