查询字符串问题中的自定义Oauth服务器和&符号

时间:2012-11-25 19:02:09

标签: php laravel oauth2-playground

我一直在尝试将oauth2游乐场与Laravel oauth2-server捆绑使用并遇到问题。授权发生后,我使用header('location:将我带回谷歌。我输入重定向的字符串是

https://developers.google.com/oauthplayground/?state=1&code=d84024740acc22646b9636421406c88abeab9c8e 

然而,当我到达时,&已被&取代,导致游乐场无法进入第2步。发生了什么事?

1 个答案:

答案 0 :(得分:3)

您是否尝试使用Laravel的Redirect类,而不是标题?它应该更好地处理编码:

Redirect::to('https://developers.google.com/oauthplayground/?state=1&code=d84024740acc22646b9636421406c88abeab9c8e');