> I am passing all the required parameters. but still I am not getting > any output. > > I am getting connection timed out error. > > I have got the access token along with token secret. Using that, I am > trying to fetch calender data.
When you try to fetch the feed with the access token, Google responds with a redirect. The URL of the redirect will contain an extra session parameter that wasn't in your original request, so your OAuth signature will be invalid for this request. Therefore, you cannot just follow the redirect. Instead, you need to generate a fresh request. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "OAuth" 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/oauth?hl=en -~----------~----~----~----~------~----~------~--~---
