创建广告集时,会收到错误消息“发生未知错误”

时间:2017-05-04 03:41:03

标签: facebook-graph-api

我使用java sdk(v2.9)创建广告集,并收到此错误消息。

{"error":{"message":"An unknown error has occurred.","type":"OAuthException","code":1,"fbtrace_id":""}}

这是我的代码:

AdPromotedObject promotedObject = new AdPromotedObject();
promotedObject.setFieldApplicationId("1620089638283287");
account.createAdSet()
            .setName("AdSet01")
            .setBillingEvent(AdSet.EnumBillingEvent.VALUE_APP_INSTALLS)
            .setBidAmount(2L)
            .setDailyBudget(1000L)
            .setPromotedObject(promotedObject)
            .setCampaignId("23842591178760207")
            .setTargeting(
                    new Targeting()
                            .setFieldGeoLocations(new TargetingGeoLocation().setFieldCountries(Arrays.asList("US")))
            )
            .setStatus(AdSet.EnumStatus.VALUE_PAUSED)
            .execute();

广告系列ID和应用ID都存在且有效。我使用account成功创建了一个广告系列,因此它是一个有效的帐户。

1 个答案:

答案 0 :(得分:0)

我发现了问题,我想念object_store_url的{​​{1}}字段。

promotedObject