Tagged Questions
0
votes
1answer
92 views
YouTube API, C#.net - Getting video info from YouTube failed some times
I'm trying to add comment to videos on YouTube , some times when I'm getting a video to add comment on it, YouTube send me the below error:
Execution of request failed: ...
1
vote
0answers
22 views
zend get youtube comments with query
I want to get a video's comments in Zend by using a query, so that I can specify some extra parameters (max results, starting index etc) but I can't get it to work.
They way I fetch the comments is:
...
1
vote
0answers
73 views
YouTube: Searching my channel for tags x AND y
I wish to search my channel for any video that has tagX AND tagY. As per this answer, I've tried the following URL:
http://gdata.youtube.com/feeds/api/users/myusername/uploads/-/tagX/tagY?v=2
But ...
3
votes
2answers
275 views
Getting Youtube Channel Playlist using Objective-C API
I'm trying to use Google's Objective-C Youtube APIs to fetch a youtube channel's playlist - with no luck.
-I downloaded Google's official API from:
...
0
votes
0answers
70 views
YouTube Batch Processing for Playlist Videos
We have a YouTube channel, which has several playlists, each of which has several videos.
I am trying to get the FIRST FOUR videos for each playlist, using the YT API, but it takes a long time to ...
0
votes
1answer
95 views
Retrieving timestamp of YouTube comments
Here is the API response for retrieving comments of a YouTube video, taken from https://developers.google.com/youtube/2.0/developers_guide_protocol_comments:
<feed>
<entry>
...
...
0
votes
0answers
26 views
on click load embedded player and place the title of the video in div
I have used the YouTube Data API via JSON playlist carousel template to build a video site and it works well. The problem I'm having is I have added an extra div which i have named ='video_description ...
0
votes
1answer
72 views
YouTube API Inbox Request doesn't always work
I',m trying to get Inbox Messages for authenticated Youtube's user's profile.This is my code
def GetInboxMessage(self):
uri = ...
0
votes
0answers
103 views
Expected response code 200, got 500 Internal Error
Well, i try with Zend Gdata YouTube to do somethings :
I doing lot of requests search, then lots of new entry video to a playlists requests.
Before add :
if($compteur == 15)
{
$compteur = 0;
...
0
votes
1answer
102 views
Attempting YouTube upload through Python API gives 'Developer key required for this operation' Error
I am attempting to upload a video to YouTube using the developer key that I obtained as paired with credentials for a particular user. It seems to me that my YoutubeService object should have the ...
0
votes
1answer
47 views
Youtube API: How do request only safe advertisements?
I am trying to use YouTube API on a project. Is there a way to ask YouTube to display only safe advertisements? I don't want kids watching horror movie trailers when they watch YouTube videos.
0
votes
0answers
221 views
Caching YouTube videos in PHP
So I've been through the grinder figuring out how to enable my server to download videos from YouTube. I've tried the Gdata APIs, the Zend Framework, cURL, and raw PHP. I have been successful as far ...
2
votes
0answers
121 views
iOS GData YouTube comment on a Video
There are a lot of GData YouTube tutorials on how to upload a Video in an iOS App, but I didn't find one showing how to comment on a Video. So I read on the reference-page, just tried and so on but ...
1
vote
0answers
89 views
How to fetch movies URl from youtube
I want fetch movies URl from youtube for my youtube app.
I am able to search videos based on there ID , Videos from channel , But i want URL from youtube movies , trailers section...
I am using this ...
0
votes
1answer
101 views
Trouble using gdata and Unicode Cyrillic in Python
I have this code
# -*- coding: utf8 -*-
__author__ = 'user'
import gdata.youtube.service
yt_service = gdata.youtube.service.YouTubeService()
query = gdata.youtube.service.YouTubeVideoQuery()
...
0
votes
0answers
50 views
YouTube Like/Dislike Button In iOS
I am currently developing an app that takes in a uitableview of uploaded videos from a specific youtuber, the user can click on the video and it will go to another viewcontroller where it has the ...
1
vote
1answer
66 views
gdata API return no results
I am just using this url to find the top rated videos on youtube with the word "scared".
http://gdata.youtube.com/feeds/api/standardfeeds/top_rated?q=scared
I am not using category or keywords ...
2
votes
1answer
240 views
Get XML with id's of all uploaded videos on youtube channel
I have more than 100 videos uploaded in a youtube channel. I get the xml of channel as:
https://gdata.youtube.com/feeds/api/users/UserId/uploads , it only returns xml with id's for only 25 videos. ...
0
votes
1answer
229 views
How can I get the video title when using YouTube Player IFrame API?
I have a video id. And then I show a video via YouTube Player API's IFrame API. The video is displayed, and now I need to IMMEDIATELY get this video's title.
Please note that I need to IMMEDIATELY ...
1
vote
1answer
127 views
watch History feed gdata python
I'm trying to get history feed from YouTube of an authenticated user with python.
This is my code :
yt_service = gdata.youtube.service.YouTubeService()
def LogIn():
login_name = ...
0
votes
1answer
110 views
Youtube GData 2 thousand most viewed
I want to catch the 1 thousand most viewed youtube videos through gdata youtube api.
However, only the first 84 are being returned.
If I use the following query, only 34 records are returned (plus ...
0
votes
0answers
285 views
Upload a video to YouTube from iphone application in ios6
My application have xcode4.5 and ios6, I am trying to upload a video to youtube from iphone application, So I integrated gdata api and followed this.
...
2
votes
0answers
156 views
Youtube PHP library with OAuth 2
According to the Google's documentation, the AuthSub method is officially deprecated in place of OAuth 2.0. The problem is, their PHP library v2 is built using Zend Gdata, which from what I can tell, ...
0
votes
0answers
324 views
C# request for a video through gdata youtube api v2.0 fails when logged in as a different user
This is the c# code
settings = new YouTubeRequestSettings("my app", devKey,username,password);
request = new YouTubeRequest(settings);
...
0
votes
1answer
91 views
Deleting a YouTube favorite when authenticated with OAuth2
I'm trying to delete a favorite using YouTube API. As Google recenlty deprecated AuthSub authentication method, I've decided to choose the officially recommended OAuth2 authentication method.
I'm ...
0
votes
0answers
52 views
My account got disabled after access from different places
I developed an app for iPad, and used a youtube api key in it for accessing videos from youtube using gdata api. But when the app got approved by Apple, it was used by a few users worldwide and now ...
0
votes
1answer
115 views
AuthSub. How to check token existence? Python gdata client
I develop a decorator to authenticate my app and start to work with youtube API. Decorator appointed to wrap a REST resource class methods.
def youtube_auth(f): ...
1
vote
1answer
332 views
How do I get the YouTube video ID from GDataEntryYouTubeVideo?
I'm using the GData/YouTube direct upload api. When the upload is finish the following method gets called:
- (void)uploadTicket:(GDataServiceTicket *)ticket
...
0
votes
0answers
223 views
Implement “Load more” in UITableView using GDataQueryYouTube class
I am writing an application to read feeds from youtube. I do not know how to implement the function "load more" using GDataQueryYouTube. Initially it is showing the last 10 feeds using:
    ...
1
vote
1answer
284 views
Socket error when using gdata Youtube API in Python
I'm using gdata to map YouTube URLs to video titles, using the following code:
import gdata.youtube.service as youtube
import re
import queue
import urlparse
ytservice = youtube.YouTubeService()
...
0
votes
0answers
118 views
gdata.youtube with json-c is not working in IE with a https secured site
I have a https secured site. I'm using this url "http://gdata.youtube.com/feeds/api/videos/ID?v=2&alt=jsonc" with jQuery ajax function to display video thumbnails, titles, and durations. It works ...
0
votes
1answer
105 views
Youtube captions eample
Can anyone provide an example of how to retrieve captions for YouTube video?
Based on API docs, API request https://gdata.youtube.com/feeds/api/videos?q=surfing&caption&v=2
returns list of ...
0
votes
2answers
2k views
Show YouTube private videoes only for website users
I have experience with YouTube API. But I always used it for public videos. Now. what I want to achieve is, to make video on my YouTube channel TOTALLY invisible (in other word private) and shows this ...
4
votes
2answers
267 views
YouTube Zend library get VideoId of playlist entry
I am using the Zend GData library to manage YouTube videos from within my application. The application gives the user the ability to choose to add the uploaded video to one of their pre-existing ...
1
vote
0answers
58 views
Python packages documentation - gdata
i am writing a code that gets a youtube video UR, gets its id and then displays all info related to it.
i came across this method: gdata.youtube.YouTubeVideoEntry - but could not find any fully ...
1
vote
2answers
587 views
Trying to direct upload via Youtube API and getting Invalid Request (NSURLErrorDomain error 400.)
I'm trying to direct upload a video to Youtube via the Youtube API. I can't figure out where the problem is...is it my request URL syntax? Is there something wrong with the way I'm adding the video ...
-4
votes
1answer
87 views
can I use YouTube Videos as main content on my Facebook Application? [closed]
I'd like to create a Faceook application which is same like Socialcam but in a different aspect, which is sports.
I can get the user Page Likes which are sports and create the video playlist ...
1
vote
0answers
199 views
Youtube gdata java api ParseException
I'm trying to make some search using youtube gdata api for java but i'm having some errors.
I set max. result to 20 and started to make test searches and occasionally there is no result back.
Then i ...
0
votes
1answer
181 views
Retrieve the URL and the thumbnail from Youtube API (zend framework)
i trying to show a video playlist with zend, but after catching the playlist info, i'dont know what i have to do with for finding thumbnail or url of the thumbnail.
her my code
require_once ...
0
votes
1answer
556 views
YouTube API: Private Video Access
I know that controlling a video's privacy setting (public, private, unlisted) is done through setting the yt:private or yt:accessControl tags. However with a YouTube video, when it is set to private ...
2
votes
1answer
169 views
Google Data Login to YouTube?
How do I login/logout from youtube using GData in C#? Would it be faster to create a browser instance and display the video with the page or is there a way to embed it straight into your app?
2
votes
1answer
351 views
YouTube quota limits - what are the best practices?
I am developing an application which relies heavily on the YouTube API to assist in content discovery. During a load testing phase of development, I received the
...
2
votes
2answers
403 views
Youtube intent starts in browser android
I have followed a tutorial on how to use the youtube gdata. Populating a listview with videos from youtube and a onclick. The source code is availeable from this site: ...
0
votes
1answer
337 views
YouTube GData API - Query for videos with a specific duration
Is there a YouTube GData API parameter for a query that will only return entries with a minimum and/or a maximum given duration?
I've found the "duration" parameter but it only accepts the values ...
1
vote
1answer
156 views
Null Reference Exception on YoutubeRequest Instantiation
I am running a c# web app that includes the ability to upload video to youtube. I am using the gdata library for .NET. However, when I hit this line in my upload video code (in the function that ...
2
votes
1answer
86 views
Why won't this small change to my YouTube API call work?
In the YouTube API docs I found this example:
https://gdata.youtube.com/feeds/api/videos?q=surfing&max-results=10&fields=entry[yt:statistics/@viewCount>1000000]
Which, of course, works ...
1
vote
1answer
691 views
Upload video to youtube via URL with python gdata
Is it possible to upload a video on youtube with a remote URL (not from the local machine). I am using Youtube API and python gdata tools for this.
I don't have the videos on the server where the ...
0
votes
0answers
195 views
how to upload a file in youtube using google-api-python-client
I need to upload a file to youtube from my python server. I have installed google-api-python-client . But its asking for authentication. How do i authenticate using oauth from the python server.
Can ...
0
votes
0answers
144 views
Getting YouTube API to honor the yt:private flag
I am uploading videos to YouTube using Google's GData API Java reference implementation (https://code.google.com/p/gdata-java-client/). I need those videos to be non-visible after upload, so I've ...
1
vote
1answer
248 views
How can I tell if a YouTube video from the users private feed is public or not?
I'mm using gdata to retreive videos, but it's giving me all the users videos and I just want the public ones.
client = gdata.youtube.service.YouTubeService()
feed_url = ...
