2017-03-17 14 views
0

Apple Search Ads APIを使用してキャンペーンを作成しようとしています。だから私は、私は次のエラーメッセージを得たApple Search Ads APIを使用してキャンペーンを作成する方法

curl -X POST https://api.searchads.apple.com/api/v1/campaigns \ 
--cert path/XXXX.p12 \ 
--pass **** \ 
-H "Authorization: orgId=xxxx" \ 
-d '{"budgetAmount":{"currency":"USD","amount": 50.0},"name": "weixinCampagin", "adamId":"414478124","adGroups": [{"name": "weixinCampaginAdGroup","startTime":"2017-03-17 00:00:00","defaultCpcBid": {"amount": 1,"currency":"USD"},"storeFronts": ["US"]}]}' 

を使用します。

{"data":null,"pagination":null,"error":{"errors":[{"messageCode":"INVALID_ATTRIBUTE_TYPE","message":"This is an invalid request. At least one field format is not readable by the system.","field":"Line#:1 Column#:50"}]}} 

私はさまざまな方法を通じて何度も試みたが、まだ動作していません。スマートな人が私を助けることができるのですか?

ありがとうございます!

答えて

0

jsonオブジェクトを送信するように指定する必要があると思います。

curl \ 
--cert ./<FILENAME>.p12 \ 
--pass <PASSWORD> \ 
-H "Authorization: orgId=<ORG_ID>" \ 
-H "Content-Type: application/json" \ 
-d "<CAMPAIGN_DATA_FILE>.json" \ 
-X POST "https://api.searchads.apple.com/api/v1/campaigns" 
関連する問題