我正在使用此 api 端在受众列表 ID 中发布用户(我正在动态创建)。
这是我正在使用的代码-:
require '../vendor/autoload.php';
require 'config.php';
$api = TwitterAds::init(CONSUMER_KEY, CONSUMER_SECRET, $oauth_token, $oauth_token_secret);
$responseAcc = $api->get('accounts');
$account = $responseAcc->getBody();
$twAdsAccId = $account->data[0]->id;
$response = $api->post('accounts/'.$twAdsAccId.'/tailored_audiences',array('name'=>'Test'));
$newAudiDat = $response->getBody();
$audienceId = $newAudiDat->data->id;
$userJson = '{
{
"users": [
{
"email": [
"c88a2aba7408c019ea7e721832cc89aeec2f91169872a977fbbe46d642c8fdd9"
]
}
]
}
}';
$responseAudieUser =$api->post('accounts/'.$twAdsAccId.'/tailored_audiences/'.$audienceId.'/users',array('operation_type'=>'Update','params'=> $userJson));
但是当我打印响应时,它显示错误:-
caught exception 'Hborras\TwitterAdsSDK\TwitterAds\Errors\ServerError' with message 'SERVER_ERROR' in /opt/lampp/htdocs/demo/tweets-php/vendor/hborras/twitter-php-ads-sdk/src/TwitterAds.php:501
我想我以错误的方式传递参数,所以我搜索但没有得到任何线索。
注意 -:所有参数都在请求正文中发送,并且需要 application/json 的 Content-Type(请参阅)。