0
votes
1answer
50 views

Youtube Embed Player Controls not working in asp.net

i m trying to hide logo and title on the youtube embed player here is the problem that, i m taking url form database not directly writing it in code aslo i m using datalist to show the results, now ...
0
votes
0answers
50 views

All Embedded YouTube Videos Start Playing At Once

I've got a site which works pretty nicely for the most part. It's written in ASP.NET, and it renders a GridView, with a row for each video, showing a thumbnail and the description. Also in each row ...
0
votes
1answer
75 views

Uploading videos with YouTube API and CORS

I'm trying to allow visitors to our site to upload videos to our YouTube channel. As a result, I don't want to handle authentication with OAuth otherwise I'm going to need to hand out our username and ...
0
votes
0answers
39 views

YouTube API feed url returns 400 Bad request error

Query i am using is http://gdata.youtube.com/feeds/api/videos/-/{http://gdata.youtube.com/schemas/2007/categories.cat}News related code Feed<Video> videoFeed = ...
0
votes
1answer
110 views

Invalid Parameters on playing youtube embedded on a website

At first I'm getting this error "This video contains content from sme. It is restricted from playback on certain sites" Then after reading this post I added few lines to my youtube emded url I'm now ...
1
vote
1answer
82 views

Retrieve hidden playlists from my own account using YouTube API without requesting password from client (.NET/C#)

I am trying to find a way to retrieve my own private playlists from my own personal YouTube account via a server side web app built in ASP.NET (C#). Based on the research that I have done, the ...
0
votes
1answer
154 views

youtube api with asp.net (401) Unauthorized error

Everytime i try to use the youtube api i get this error: The remote server returned an error: (401) Unauthorized. on this code: public static YouTubeRequest AuthRequest() { ...
0
votes
1answer
113 views

Add comment to youtube video

My webpage is developed in .net and i am trying to add comment to a youtube video using following code. string lsDeveloperKey = "myDeveloperKey"; //This will ask user to login to ...
0
votes
1answer
97 views

youtube api updating video information using asp.net

I am using the Youtube api for asp.net to rename a video: public static void UpdateVideoInfo(string video_id, string new_title) { Uri entry = new ...
1
vote
1answer
138 views

youtube api upload “Cannot close stream until all bytes are written”

I am using the youtube api to direct upload videos like this: YouTubeRequestSettings setting = new YouTubeRequestSettings("devpa", key, "user", "pass"); YouTubeRequest req = new ...
0
votes
0answers
123 views

youtube direct upload with asp.net not working

I am trying to use asp.net to direct upload videos to youtube, here is my code: html: <form id="form1" runat="server" enctype="multipart/form-data" method="post"> <div> ...
0
votes
1answer
250 views

youtube api get specific video returns readonly

i'm trying to integrate some youtube features into my site. i am able to pull in my uploads. when i loop thru the results, i see the videos are NOT readonly. however, when i go to update a video, i ...
1
vote
1answer
76 views

youtube video upload limitations

I am getting started with the youtube api but was wondering is a few things: do i need to upload the video the youtube or can i just use it's player? if it does require me to upload to youtube, ...
0
votes
1answer
179 views

ASP.NET site authorization issue with google and youtube api's

I have implemented several google APIs in my website - to enbale contacts import and youtube uploads. while everything works great locally (under my own development server's localhost), there are ...
0
votes
2answers
199 views

youtube videos not playing when embedded with “normal” URL

I'm trying to embed a video on my page, depending on which one the user selects after being presented with a list. On my page I have: <div id="vidContent" style="text-align:left"> ...
0
votes
0answers
125 views

Video Uploading and viewing in ASP.NET

I am developing a Social Networking site..I am done with basic functionality.Now I want my users to upload video and let them view..at the same time The can even delete or edit it as well. I cam ...
0
votes
0answers
114 views

Error uploading video on YouTube using YouTube API

protected void Button1_Click(object sender, EventArgs e) { YouTubeRequestSettings settings = new YouTubeRequestSettings("youtube", "developer key", "ID", "PAswd"); YouTubeRequest request = new ...
1
vote
1answer
153 views

YouTube comment and reply listing

I am using YouTube (Google) api (c#). I am listing comments for a video. I want to be able to associate a reply with its parent comment for display purposes. What is the association between comment ...
0
votes
1answer
533 views

using youtube api with asp.net, how can I upload and record a video? [closed]

I have an asp.net website where i need users to upload videos to a certain channel on youtube. uploading the videos can be done either by uploading a video from their pc's or by recording a video ...
1
vote
1answer
277 views

get the number of youtube channel subscribers

i need to get the number of subscribers of a youtube channel in my asp.net website, i have searched the documentation ...
-2
votes
1answer
88 views

Get a video from youtube for a corresponding userid [closed]

i am using different userid in the following url -"https://gdata.youtube.com/feeds/api/users/userid/uploads" but i cant get video belongs to that corresponding user intead of that i am gettting ...
4
votes
1answer
649 views

uploading to YouTube with ASP.NET C# - avoiding the “Google login” screen

I am creating an ASP.NET C# app that uploads videos to a YouTube Channel. *I have already read through (to the best of my ability) the documentation at The YouTube API Documentation I have been ...
1
vote
1answer
114 views

How to get the upload status with .net youtube API direct upload

I have been trying to workout with youtubi API direct upload method, have been successful in uploading the video but the issue is some of the video's get rejected (Rejected (terms of use violation)) ...
2
votes
2answers
426 views

How to get Description of Youtube embeded videos in my asp.net application?

I am using the below code to get the Title and description of the youtube video embeded in my asp.net application. I am able to see the Title, but not description. I use Atomfeed to do this... ...
0
votes
1answer
349 views

How to get user video list through Youtube API in asp.net

How can i get playlist feed in asp.net through Youtube APT. I got Totalresult =o when i tried to fetch data. Please see the image below: Please suggest me how to do this. Thanks.
0
votes
1answer
84 views

How to include youtube login in an asp.net page?

I want to include a youtube login system just like facebook has "login with facebook". I searched the api but couldn't find anything. Can someone guide me through or post link to any tutorial on how ...
2
votes
1answer
293 views

YouTube ASP.NET API: Upload Request Returns 400, Keywords Text “Too Long”

Attempting to upload a video, and this is the response I get back (after several minutes, no less): <?xml version='1.0' encoding='UTF-8'?> <errors> <error> ...
1
vote
2answers
304 views

Youtube javascript API (& ASP) with multiple videos

I've got ASP generating the embed code on my page as follows: Table1.Rows(0).Cells(0).Text = "<object style=""height: 390px; width: 640px"" id=""ytplayer_object_left"">" & _ ...
1
vote
1answer
119 views

Youtube javascript API (with ASP) functions not working

I've got a program which takes Youtube URLs from a database, and I'm having trouble with the Youtube javascript API. In my codebehind, I'm calling the following code: Table1.Rows(0).Cells(0).Text = ...
0
votes
1answer
188 views

Get Video By Id to check status using the YouTubeApi

I am using the YouTube .net API to upload videos to a single channel. I am using the Direct Upload with this code: Video newVideo = new Video(); newVideo.Title = poi.Title; ...
2
votes
1answer
294 views

get youtube video without authentication

How can you make youtube requests without a developer key? eg i have: Uri videoEntryUrl = new Uri("http://gdata.youtube.com/feeds/api/videos/xyz123"); Video video = ...
2
votes
2answers
87 views

ASP.NET and YouTube privacy

I'm currently building a website which contains video material from a YouTube channel. The users of the website should be able to watch the embedded YouTube videos, but the videos must not, under any ...
0
votes
1answer
579 views

Retrieve user playlist using YouTube API

I have this code at the moment that authenticates a user and tries to retrieve the current authenticated users playlist but the request is inavlid and the error is as so Execution of request failed: ...
0
votes
1answer
166 views

How would you authenticate client login using REST method in Youtube

I have this call that makes a client log in, but how do i pass the username and email to authenticate the user. What i am trying to do is get all the uploaded files from a particular user YouTube ...
0
votes
1answer
215 views

How to check if youtube authentication has worked using OAUTH

Here is some code that uses authentication using YouTube API. Public Function GetService(ByVal username As String, ByVal password As String) As YouTubeService Dim service As YouTubeService = ...
-1
votes
1answer
100 views

Handling cookies from another site

I just wanted to ask if you can retrieve cookies in your asp.net application from when you logged into the YouTube website? I understand how to set and retrieve cookies using .net and i could do this ...
0
votes
2answers
412 views

Youtube API - How can i retrieve multiple videos in one request using VB.Net?

This question has been killing me, what i want to do is retrieve more than one video from YouTube in one request. now these videos do not belong to a playlist i just want to specify random video ids ...
0
votes
1answer
785 views

Access to like-or-dislike feature through youtube api

I have an asp.net application where users can upload videos to youtube, view the uploaded videos and vote for a video if they wish. All the above except the voting part is working. I had a look at ...
3
votes
2answers
2k views

400 Bad Request Error uploading videos to YouTube using C# YouTube API

I can't seem to get my ASP.net application to succesfully publish to my YouTube account but not matter what I do I get a 400 Bad Request error . I used the YouTube documentation to create my code and ...
0
votes
1answer
335 views

youtube api Rating not working?

string developerKey = "--------------------------"; string username = "example@gmail.com"; string password = "@@@@";//password YouTubeRequestSettings settings = new ...
2
votes
1answer
529 views

Batch upload to YouTube - ASP.NET 4 C#

I've tried searching for the best method of doing batch uploads to YouTube but I've only found methods for uploading a single video to YouTube (which is fine, but not my situation). I'd like to know ...
6
votes
3answers
15k views

YouTube API integration ASP.NET - upload video with a single page

we are trying to use the Google YouTube API to upload videos from our website to YouTube through the browser directly. The API works in two steps, in the first step we need to create an Video object ...