On Dec 15, 3:27 pm, John <
john.tuni...@rentflow.net> wrote:
> A patch to allow jopenid to work properly for GAFYD: just replace
> OpenIdManager.getAuthenticationUrl(...) with:
>
> public String getAuthenticationUrl(Endpoint endpoint, Association
> association, String alias)
> {
> StringBuilder sb = new StringBuilder(1024);
> sb.append(endpoint.getUrl());
> if (endpoint.getUrl().contains("?"))
> {
> sb.append('&');
> }
> else
> {
> sb.append('?');
> }
> sb.append(getAuthQuery(alias)).append
> ("&openid.return_to=").append(returnToUrlEncode).append
> ("&openid.assoc_handle=").append(
> association.getAssociationHandle());
> if (realm != null)
> sb.append("&openid.realm=").append(realm);
> return sb.toString();
> }
>
> This is necessary to changehttps://
www.google.com/a/rentflow.net/o8/ud?be=o8?openid....