我使用composer下载了facebook ads sdk。一切都很好。现在我想将这个sdk添加到我现有的symfony项目中。我将所有内容复制到/lib/vendor
。之后我试图在这里使用api:
if (is_null($access_token) || is_null($app_id) || is_null($app_secret)) {
throw new \Exception(
'You must set your access token, app id and app secret before executing'
);
}
else
{
echo "fine.";
}
if (is_null($account_id)) {
throw new \Exception(
'You must set your account id before executing');
}
else
{
echo "fine.";
}
// define('SDK_DIR','/var/www/html'); // Path to the SDK directory
// $loader = include '/vendor/autoload.php';
// $this->loader->registerNamespace('FacebookAds',sfConfig::get('sf_lib_dir') . '/vendor/facebook/php-ads-sdk/src/FacebookAds');
// use FacebookAds\Api;
Api::init($app_id, $app_secret, $access_token);
我收到错误:Fatal error: Class 'Api' not found in
如何将此sdk添加到symfony。