Closed GoogleCodeExporter closed 8 years ago
is the latest v1.6?
Frank
Original comment by fman...@gmail.com
on 22 Jun 2010 at 4:19
Yes, it's updated to 1.6.0.0
Here's the error message:
22/06/2010 20.05.00.304;Source: Google.GData.Client
Message: Execution of request failed:
http://gdata.youtube.com/feeds/api/standardfeeds/most_popular
InnerException: System.Net.WebException: Errore del server remoto: (401) Non
autorizzato.
in System.Net.HttpWebRequest.GetResponse()
in Google.GData.Client.GDataRequest.Execute()
Method: Execute
StackTrace: in Google.GData.Client.GDataRequest.Execute()
in Google.GData.Client.GDataGAuthRequest.Execute(Int32 retryCounter)
in Google.GData.Client.GDataGAuthRequest.Execute()
in Google.GData.Client.Service.Query(Uri queryUri, DateTime ifModifiedSince, String etag, Int64& contentLength)
in Google.GData.Client.Service.Query(Uri queryUri, DateTime ifModifiedSince)
in Google.GData.Client.Service.Query(FeedQuery feedQuery)
in Google.GData.Client.Feed`1.get_AtomFeed()
in Google.GData.Client.Feed`1.<get_Entries>d__0.MoveNext()
Original comment by i...@bmoll.com
on 22 Jun 2010 at 6:28
According to point 4 of "Posting and Reading Profile Data" of this FAQ
(http://code.google.com/intl/it-IT/apis/health/faq.html) I have to digitally
sign every request made with the exchanged token, but in the examples and the
reference help I can't find a way to sign my request.
What am I missing? How can I sign the request used in point 3 of my issue?
Thanks for yout support!
Fabio
Original comment by i...@bmoll.com
on 23 Jun 2010 at 10:38
Any news?
Thanks!
Fabio
Original comment by i...@bmoll.com
on 7 Jul 2010 at 1:27
I was having the same problem today and think I have solved it. It looks like
you have to sign each request with the RSA key. Try adding the following lines
just after creating your YouTubeRequest:
YouTubeRequest request = new YouTubeRequest(settings);
request.Service.RequestFactory = new GAuthSubRequestFactory("youtube", Source)
{
PrivateKey = GetRSAKey(),
Token = Token
};
Original comment by kmjacob...@gmail.com
on 25 Aug 2010 at 7:01
Great! It does the trick :-)
Thank you!!
Original comment by i...@bmoll.com
on 31 Aug 2010 at 4:41
Hello,
Does anyone have the problem when uploading video from server?
Thanks for this issue, I fixed authentication bugs, and it does work on my
local computer, but does not work at server side.
Btw, local computer does not need certificate, when server does.
I use Server 2008R2, IIS 7.
Any suggestions would be appreciated.
Original comment by an.serge...@gmail.com
on 1 Feb 2011 at 4:01
to comment 7,
never mind guys, it was MIME problem.
Original comment by an.serge...@gmail.com
on 8 Feb 2011 at 11:56
Original comment by ccherub...@google.com
on 9 Feb 2011 at 9:21
for comment no 5:
request.Service.RequestFactory = new GAuthSubRequestFactory("youtube", Source)
What is Source mean ?
Original comment by youssef....@gmail.com
on 11 Jul 2014 at 3:51
Original issue reported on code.google.com by
i...@bmoll.com
on 22 Jun 2010 at 1:38