Warning: file_get_contents(https://oauth.vk.com/access_token?client_id=3504009&code=e3cd573a052e510d0e&client_secret=XkKPKGQVlx1lIEddrwri) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 400 Bad Request in W:\domains\forum\callback.php on line 4
Вот обработчик:
<?
require_once("config.php");
if($_REQUEST['code']) {
$resp = file_get_contents('https://oauth.vk.com/access_token?client_id='.CLIENT_ID.'&code='.$_REQUEST['code'].'&client_secret='.SECRET);
$data = json_decode($resp, true);
if($data['access_token']){
$_SESSION['access_token'] = $data['access_token'];
$_SESSION['user_id'] = $data['user_id'];
header('Location: '.PATH.'index.php');
exit();
}
}
?>
ошибка на 4 линии! помогите решить проблему...
_____________
PRchik.ru | Раскрутись и заработай!