Sorry that noone answered earlier, but there is a wiki page about authsub
usage.
http://code.google.com/p/google-gdata/wiki/AuthSubSupport
You would not need to add the "setAuthSubToken()" to the service.cs class,
you could just leave the code outside and just set it on the factory (as you
are do
I figured out some items, and made two changes to the GData code.
I can get my temp Auth code by using:
Response.Redirect(AuthSubUtil.getRequestUrl(next, scope,
false, true));
I can convert it to a session Auth code by using:
AuthSubUtil.exchangeForSessionToken(Request["token"],n
My end goal is to work with PicasaWeb through asp.net and c#
I have figured out how to retrieve a session token, through GET
requests, but can not figure out how to use the client libraries, or
how to make use of it later in the process. I have downloaded the
newest client libraries 1.0.9.8
I h