Hello every body, 

I've got some errors during the execution of an album list query.
There is some logs about it: 

00:04:21:5074] - set token called with: 
[00:04:21:5129] -                                                           
                                                                          
--> Service.Query(): Enter
[00:04:21:5157] -                                                           
                                                                            
          --> FeedQuery.CalculateQuery(): creating target Uri
[00:04:21:5208] - Service:Query - about to query
[00:04:21:5222] -                                                           
                                                                            
      --> Service.Query(): Enter
[00:04:21:5248] -                                                           
                                                                            
              --> GDataGAuthRequest.Execute(): GoogleAuth: Execution called
[00:04:21:5594] - Network credentials found
[00:04:22:7861] - QueryAuthtoken failed SendFailure Error getting response 
stream (Write: The authentication or decryption has failed.): SendFailure
did not find an auth token in QueryAuthToken
---- DEBUG ASSERTION FAILED ----
---- Assert Short Message ----
did not find an auth token in QueryAuthToken
---- Assert Long Message ----


[00:04:22:7945] - set token called with: 
[00:04:22:8046] -                                                           
                                                                            
                  --> GDataRequest.Execute(): calling the real execution 
over the webresponse
[00:04:22:9207] -                                                           
                                                                            
                  --> GDataRequest.Execute(): GDataRequest::Execute failed: 
http://picasaweb.google.com/data/feed/api/user/NTIC?kind=album
[00:04:22:9210] - Got no response object


This query worked fine two days ago and I changed nothing.

Below, there is my C# code executing : 

/// <summary>
/// Gets the service.
/// </summary>
/// <value>
/// The service.
/// </value>
private PicasaService Service {
get {
if (_service == null) {
_service = new PicasaService (_configuration.ApplicationName);
_service.setUserCredentials (_configuration.UserName, 
_configuration.Password);
}
 return _service;
}
}

                /// <summary>
/// Gets the galeries.
/// </summary>
/// <returns>
/// The galeries.
/// </returns>
public IEnumerable<ImageGalery> GetGaleries ()
{
try {
List<ImageGalery> result = new List<ImageGalery> ();

AlbumQuery query = new AlbumQuery (PicasaQuery.CreatePicasaUri 
(this._configuration.DefaultUserName));
PicasaFeed feed = this.Service.Query (query);
 foreach (PicasaEntry item in feed.Entries)
result.Add (new PicasaGalery (item));
 return result;
} catch (Exception error) {
throw error;
}
}

Can anyone help me to solve this issue ?

Thank you


-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-picasa-data-api/-/2CflmlFiYcYJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-picasa-data-api?hl=en.

Reply via email to