2012-11-25 37 views
5

我一直在嘗試使用Laravel oauth2-server捆綁包使用oauth2遊樂場並遇到問題。授權發生後,我使用header('location:將我帶回谷歌。我把到重定向的字符串是自定義Oauth服務器和查詢字符串問題中的&符號

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

然而,當我得到它的&已替換爲&,這是造成操場不轉到步驟2。這是怎麼回事?

回答

3

您是否嘗試過使用Laravel的Redirect類,而不是頭?它應該更好地處理編碼:

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