include_once 'face/FppClient.php';
use Fpp\FppClient;
$host = 'https://api-us.faceplusplus.com/facepp/v3/detect';
$apiKey = '{{key}}';
$apiSecret = '{{secret}}';
$client = new FppClient($apiKey, $apiSecret, $host);
$data = array(
'image_url' => "{{photo}}",
'return_landmark' => '2',
'return_attributes' => 'age,headpose,gender'
);
$resp = $client->detectFace($data);
var_dump($resp);
Using the example I have this:
The response is this:
How to get this to work?