Al intentar recuperar los contactos en c# me da el siguiente error:
Error processing request: Google.GData.Client.GDataRequestException:
Execution of request failed:
http://www.google.com/m8/contacts/feeds/edwin.mond...@gmail.com/base
---> System.Net.WebException: Error en el servidor remoto: (404) No
se
encontró. en System.Net.HttpWebRequest.GetResponse() en
Google.GData.Client.GDataRequest.Execute() --- Fin del seguimiento de
la pila de la excepción interna --- en
Google.GData.Client.Service.Query(Uri queryUri, DateTime
ifModifiedSince) en Google.GData.Client.Service.Query(FeedQuery
feedQuery, DateTime ifModifiedSince) en
Google.GData.Client.Service.Query(FeedQuery feedQuery) en
ASP.contactos_aspx.PrintContact() en
El codigo que uso es:
GAuthSubRequestFactory authFactory = new
GAuthSubRequestFactory("cp", "Tigabytes");
authFactory.Token = (String) Session["token"];
// Service ServiceContact = new
Service(authFactory.ApplicationName);
Service ServiceContact = new Service("cp", "prueba-
contactTest-1");
ServiceContact.setUserCredentials("correo", "clave");
ServiceContact.SetAuthenticationToken(authFactory.Token);
// ServiceContact.RequestFactory = authFactory;
Google.GData.Client.FeedQuery query= new FeedQuery();
query.Uri = new Uri("
http://www.google.com/m8/contacts/feeds/
tgad...@edu.tigabytes.com/base");
try
{
AtomFeed calFeed = ServiceContact.Query(query);