We are attempting to get the Aliexpress dropship API working and have successfully created the authorisation_code but the access_token always returns empty.
It seems that with the move to the new API, AE have not updated many, if any docs and so it's almost guess work as to what's needed.
Has anyone had success with this?
Sample code from the php SDK we're using can be found below.
$appkey = 'app_key_goes_here';
$secret = 'app_secret_goes_here';
$code = @$_GET['code'];
require('ae-php-sdk/IopSdk.php');
echo $code;
if ($code) {
generate_access_token_v2($code);
}
function generate_access_token_v2($code)
{
error_reporting(E_ALL);
$url = "https://api-sg.aliexpress.com/rest";
$appkey = "app_key_goes_here";
$appSecret = "app_secret_goes_here";
$c = new IopClient($url, $appkey, $appSecret);
$request = new IopRequest('/auth/token/create');
$request->addApiParam('code', $code);
var_dump($request);
var_dump($c->execute($request));
}
I got it working by doing the following: