Closed GoogleCodeExporter closed 9 years ago
string hostedDomain = "example.com";
string nextUrl = "http://www example.com";
string scope = "http://www.google.com/calendar/feeds/";
bool session = true;
bool secure = false;
Console.WriteLine(AuthSubUtil.getRequestUrl(hostedDomain, nextUrl, scope,
secure,
session));
OUTPUT >>
https://example.com/accounts/AuthSubRequest?next=http%3A%2F%2Fwww
example.com&scope=http%3A%2F%2Fwww.google.com%2Fcalendar%2Ffeeds%2F&secure=0&ses
sion=
1
Correct is
https://www.google.com/accounts/AuthSubRequest?next=http%3A%2F%2Fwww
example.com&scope=http%3A%2F%2Fwww.google.com%2Fcalendar%2Ffeeds%2F&secure=0&ses
sion=
1
Original comment by mail.to....@gmail.com
on 4 Mar 2010 at 2:18
Fix checked in, please verify. The orignal was fixed once, but then broken
again. I need more unittests.
Original comment by fman...@gmail.com
on 18 Mar 2010 at 7:54
Verified.
Thanks.
Original comment by mail.to....@gmail.com
on 20 Mar 2010 at 6:46
Original issue reported on code.google.com by
mail.to....@gmail.com
on 4 Mar 2010 at 2:03