I'm having some problems while using DFP API PHP.
error_reporting(E_STRICT | E_ALL) ;
// You can set the include path to src directory or reference
// DfpUser.php directly via require_once.
// $path = '/path/to/dfp_api_php_lib/src';
$path = dirname(__FILE__) . '/../lib/dfp_api_php_lib_2.12.1/src';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
require_once 'Google/Api/Ads/Dfp/Lib/DfpUser.php';
require_once 'Google/Api/Ads/Dfp/Util/DateTimeUtils.php';
try {
// Get DfpUser from credentials in "../auth.ini"
// relative to the DfpUser.php file's directory.
echo "Création de l'utilisateur";
$user = new DfpUser();
// Log SOAP XML request and response.
$user->LogDefaults();
// Get the ForecastService.
$forecastService = $user->GetService('ForecastService', 'v201204');
die();