我一直在尝试将oauth2游乐场与Laravel oauth2-server
捆绑使用并遇到问题。授权发生后,我使用header('location:
将我带回谷歌。我输入重定向的字符串是
https://developers.google.com/oauthplayground/?state=1&code=d84024740acc22646b9636421406c88abeab9c8e
然而,当我到达时,&
已被&
取代,导致游乐场无法进入第2步。发生了什么事?
答案 0 :(得分:3)
您是否尝试使用Laravel的Redirect
类,而不是标题?它应该更好地处理编码:
Redirect::to('https://developers.google.com/oauthplayground/?state=1&code=d84024740acc22646b9636421406c88abeab9c8e');