Oauth token & Last sub

Thanks, You need to add for transmission via curl (php)?
my code:
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL, “https://api.twitch.tv/kraken/channel?client_id=12345&oauth_token=”.$code);
//curl_setopt($curlInit, CURLOPT_HTTPHEADER,array("Authorization: OAuth ".$code ));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$response = curl_exec($ch);
curl_close($ch);
echo $response;

response {“error”:“Not Found”,“status”:404,“message”:null}
If you go through a browser on the same link, then it works