ОК, я наконец-то получил рабочий PHP скрипт, который аутентифицируется в TD API и получает информацию об учетной записи. Я хотел бы поделиться этим со всеми, потому что я не мог понять, как заставить это работать после почти трех месяцев. Отдельное спасибо Ninet3 за помощь. Вы можете направлять вопросы в его профиль Fiverr (https://www.fiverr.com/ninety3)
$redirect_URL = 'https://YourURL.com';
$redirect_URL = urlencode($redirect_URL);
$customer_key = 'XXXXXXXXXXXXXXXXXXXX';
$account_number = '1234567890';
$url_endpoint = 'https://auth.tdameritrade.com/auth?response_type=code&redirect_uri='.$redirect_URL. '&client_id='.$customer_key.'%40AMER.OAUTHAP';
if(NULL === @$_GET['code']) {
header("Location: $url_endpoint");//open TD website to get tokens
}
if($_GET['code'] !== '') {
$code = $_GET['code'];
$code = urlencode($code);
if($code){
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.tdameritrade.com/v1/oauth2/token',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0, CURLOPT_HEADER => false,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_HTTPHEADER => array('Content-Type: application/x-www-form-urlencoded',
),
CURLOPT_POSTFIELDS => 'grant_type=authorization_code&refresh_token=&access_type=offline&code='.$code.'&client_id='.$customer_key.'&redirect_uri='.$redirect_URL,
));
$response = curl_exec($curl);
curl_close($curl);
$response = (json_decode($response, true));
echo '<pre>';
echo 'access_token: <br>';
print_r($response );
//Get account information
if(@$response['access_token'] !== null){
$acc = $account_number;
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.tdameritrade.com/v1/accounts/'.$acc,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer '.$response['access_token'],
),
));
$response = curl_exec($curl);
curl_close($curl);
echo '<pre>'.$response;
}else{
echo 'unable to get access token'; exit;
}
}
else{
echo 'No Code Found'; exit;
}
}else{
echo 'No Code Found'; exit;
}
. Вам нужно будет сохранить токен в базе данных и обновить sh, чтобы получить новый после время истекает.