OAuth 2.0 を使用して Google にログインしようとしています。一時的な認証コードを取得し、それを使用してaccess_token
.
<form action="https://accounts.google.com/o/oauth2/token" method="post">
<input type="text" name="code" value='##code##'/>
<input type="text" name="client_id" value='##client_id##'/>
<input type="text" name="client_secret" value='##client_secret##'/>
<input type="text" name="redirect_uri" value='http://boomroom.tv/test.php'/>
<input type="text" name="grant_type" value='authorization_code'/>
<input type="submit" /></form>
JSON で access_token を取得した後、URL にリダイレクトされず、'https://accounts.google.com/o/oauth2/token' ページにとどまります。理由はわかりません。私は何か間違ったことをしていますか?