lightopenid - OpenID, Google, and pass-through variables? -
i new openid, , using lightopenid provide authentication against google accounts. possible perform authentication doesn't involve header redirection or can pass through , post variables exist within original http request?
any variables in original http request lost when header redirection takes place.
thanks!
you can set parameters in $openid->return_to
.
for example, if do:
$openid->return_to .= '?a=5&b=23'
you $_get['a'] == 5
, , $_get['b'] == 23
in request after authentication.
there no way set post parameters way, or avoid redirections.
Comments
Post a Comment