What is the maximum length of the url argument for App Engine's createLogoutURL(url) function in Java?
We are getting this Exception:
java.lang.IllegalArgumentException: URL too long
at com.google.appengine.api.users.UserServiceImpl.makeSyncCall(UserServiceImpl.java:126)
at com.google.appengine.api.users.UserServiceImpl.createLogoutURL(UserServiceImpl.java:77)
at com.google.appengine.api.users.UserServiceImpl.createLogoutURL(UserServiceImpl.java:67)
There's no doc on the limit, and we cannot find the code that throws the REDIRECT_URL_TOO_LONG
error in ApiProxy
https://code.google.com/p/googleappengine/source/browse/trunk/java/src/main/com/google/apphosting/api/ApiProxy.java#58
called by UserServiceImpl
https://code.google.com/p/googleappengine/source/browse/trunk/java/src/main/com/google/appengine/api/users/UserServiceImpl.java?r=173#114