Hello there I did something similar of what you need. Check this (is in
spanish):
public bool Autenticar()
{
bool resultado = false;
try
{
PicasaService servicio = InicializarServicio();
string token = servicio.QueryClientLoginToken();
resultado = !string.IsNullOrEmpty(token);
}
catch (InvalidCredentialsException ex)
{
AgregarError(EClasificacionEvento.PicasaWebAutenticar, ex);
}
catch (WebException ex)
{
AgregarError(EClasificacionEvento.PicasaWebAutenticar, ex);
}
catch (Exception ex)
{
AgregarError(EClasificacionEvento.PicasaWebAutenticar, ex);
}
return resultado;
}
On Tue, Dec 20, 2011 at 6:19 AM, Chalpat Rauth <[email protected]> wrote:
> Hi All,
>
> I have developed the picasa apis access and it is working fine.
> Now, my application needs to check the availability of Picasa. This should
> not be specific to any user. Is there any API that I can use.
> Thanks...
>
> --
> With Best Wishes
> Chalpat
>
> --
> 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.
>
--
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.