進出口新的Google adwords - My client center添加更多領域。我想查看和添加這個廣告系列。我搜索了google adwords api客戶端庫,發現以下「http://code.google.com/p/google-api-adwords-php/downloads/list」。之後,下載了aw_api_php_lib_3.2.2.tar.gz並將該代碼放置在「mysite/protected /」文件夾中。我修改了「mysite/protected/adwords/src/Google/Api/Ads/AdWords/auth.ini」文件中的配置。與運動在谷歌的AdWords API
我可以看到所有的廣告活動。現在我想添加我的客戶中心的廣告系列。我的代碼是,
Yii::import('application.adwords.*');
require_once('examples/v201206/BasicOperations/AddCampaigns.php');
$user = new AdWordsUser();
$user->LogAll();
AddCampaignsExample($user, $campaign_name, $period, $budget, $delmethod, $status, $stdate, $enddate, $impressions, $timeunit, $level);
我已經在$ campaign_name,$ period,$ budget..etc中傳遞了適當的值。它的工作很好。
,但我想添加所有在谷歌AdWords提供的字段添加活動,如「類型,地理位置選項(高級),語言,廣告擴展,高級設置等」。我如何使用Google adwords API - 客戶端庫添加這些字段。請指教。