Hi Dan,

Unfortunately that parameter is not exposed to the developer so the only
way to set it is by editing the library code.
I can easily see this as a valid feature request, so I'd suggest you filing
it on our issue tracker:

http://code.google.com/p/gdata-python-client/issues/list

Please describe your use case and perhaps also link this thread, I'm
confident your request will be accepted and the library updated accordingly.


FYI, cURL is a command-line tool that can be used to send HTTP requests.
Follow these steps to send an authenticated request to retrieve a page of
users in your domain:

1) Download curl from http://curl.haxx.se/ then run the following command
to perform ClientLogin (of course, put your credentials):

curl https://www.google.com/accounts/ClientLogin --request POST -d Email=
[email protected] -d Passwd=mypassword -d accountType=HOSTED -d service=apps

2) From the output of the previous command, copy the Auth token.

3) Run the following command to retrieve users from your domain:

curl --header "Authorization: GoogleLogin auth=PUT_THE_AUTH_TOKEN_HERE" "
https://apps-apis.google.com/a/feeds/YOURDOMAIN.COM/user/2.0";


Claudio

On Sun, Oct 30, 2011 at 7:07 AM, Dan Lines <[email protected]> wrote:

> Claudio,
>
> Is there a way I can still use the python client library and set the
> deadline time without having to change the library itself.  Or do I need to
> build the URL and do a standard URLFetch?
>
> - Dan
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Apps Domain Information and Management APIs" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-apps-mgmt-apis/-/nXXV4Rn2vy0J.
>
> 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-apps-mgmt-apis?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Apps Domain Information and Management APIs" 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-apps-mgmt-apis?hl=en.

Reply via email to