ログアウト ページで 3 つのタスクを完了する必要があります
1. destroy session
2. logout from google account
3. redirect to google home page
ログアウトページに次のコードを書きました:
<?php
session_start();
session_destroy();
header('location: https://www.google.com/accounts/Logout');
header('location: http://www.google.com');
?>
ステップ 1 と 3 は完全に機能しますが、Google アカウントからのログアウトは機能しません。
それについて何か提案はありますか?