Файл: auth/vk/config.php
Строк: 23
<?php
session_start();
define("APP_ID", "4582917"); /* ID приложения */
define("APP_SECRET", "GLorJTYDD5DnDD6ORK7t"); /* Секретный ключ */
define("USER_FIELDS", "uid,first_name,last_name,sex,bdate,photo_big"); /* Какие данные пользователя получать */
/* Полный список: uid, first_name, last_name, nickname, sex, bdate (birthdate), city, country, timezone, photo, photo_medium, photo_big, photo_rec, connections. */
/* Не трогать :) */
define("REDIRECT_URI", "http://trance24.ru/auth/vk/auth.php");
define("URL_ACCESS_TOKEN", "https://oauth.vk.com/access_token");
define("URL_AUTH", "http://oauth.vk.com/authorize");
define("URL_GET_USER", "https://api.vk.com/method/users.get");