<HttpError 404 when requesting https://www.googleapis.com/calendar/v3/calendars/<email_address_here>?alt=json returned "Not Found">
and noted that email address still have the @ didn't get replaced with %40, so I used the urllib.quote to get that done, but now I get the same error and the email address now have have %2540 instead of @ as if it is been quoted twice : @ > %40 > %2540
note that every thing was quite fine with no errors and I didn't touch that code for long time
http://tools.ietf.org/html/rfc3986#section-3.3
Did the permissions on that account change, which would account for the 404?
-joe
You will need to ask Calendar API specific questions on their forum:
https://groups.google.com/forum/?fromgroups#!forum/google-calendar-api
> 2- regarding this case and one other case where I get AccessTokenRefresh
> error, I can see that the problem is some where with http or user
> credentials getting invalid, how can I refresh the access token manually
> without prompting the user to login to get new token so I can resolve the
> error when user isn't loged in? or this can be done some other way?
Credentials objects will automatically request a new access_token as needed
when you go to make a request, there is no need to manually force a refresh.
-joe
>
> and many thanks again