Hello again. I think guide
http://code.google.com/intl/ru-RU/apis/picasaweb/docs/1.0/developers_guide_dotnet.html
is not full. Even http://google-gdata.googlecode.com/svn/docs/Index.html
have no helpful information
So, there is another question: I want to check if user authorized or
not.
I have code:
PicasaService service = new PicasaService("LK");
...
// Function {
try
{
this.service.setUserCredentials(EmailTextbox.Text.ToString(),
PasswordTextBox.Text.ToString());
}
catch (InvalidCredentialsException ice)
{
WriteInConsole("Error :: " + ice.ToString()); //
WriteInConsole is my function
}
// end of funtion }
And when I write wrong name/psw i get no Exception. But future code,
which try to work with albums says "InvalidCredentialsException"... It
appears here:
AlbumQuery query = new
AlbumQuery(PicasaQuery.CreatePicasaUri("default"));
PicasaFeed feed = service.Query(query);
And WHERE and HOW I have to check this Exception???
--
You received this message because you are subscribed to the Google Groups
"Google Picasa Web Albums API" group.
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.