前提・実現したいこと
webサイトでlineログインを実装しています。
ログイン処理は実装できましたが、コールバック後の処理でつまずいています。
http://example.com/line/top.php
にコールバックさせています。
アクセスURLを確認すると、
code=abcdefg
のようになっているのでログイン自体はできていると思います。
発生している問題・エラーメッセージ
Warning: curl_setopt(): You must pass either an object or an array with the CURLOPT_HTTPHEADER argument in /home/〇〇◯◯.com/top.php on line 12
php
top.php
1 2$data = [ 3 'grant_type' => 'authorization_code', 4 'code' => $_GET['code'], 5 'redirect_uri' => 'xxx', 6 'client_id' => 'yyy', 7 'client_secret' => 'zzz' 8]; 9 10$ch = curl_init(); 11 12curl_setopt($ch, CURLOPT_HTTPHEADER, 'Content-Type: application/x-www-form-urlencoded'); 13curl_setopt($ch, CURLOPT_URL, 'https://api.line.me/oauth2/v2.1/token'); 14curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST'); 15curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); 16curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 17 18$response = curl_exec($ch); 19curl_close($ch); 20 21$json = json_decode($response); 22$accessToken = $json->access_token; 23 24$ch = curl_init(); 25curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer ' . $accessToken)); 26curl_setopt($ch, CURLOPT_URL, 'https://api.line.me/v2/profile'); 27curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET'); 28curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 29 30$response = curl_exec($ch); 31curl_close($ch); 32 33$userdata = json_decode($response); 34 35$userName = $userdata -> displayName; //表示名 36$userId = $userdata -> userId; //ユーザーID 37$userIcon = $userdata -> pictureUrl; //プロフィール画像URL 38
あなたの回答
tips
プレビュー