gpt4 book ai didi

Linkedin API 无法创建事件

转载 作者:行者123 更新时间:2023-12-04 21:03:03 26 4
gpt4 key购买 nike

我们有 rw_ads应用程序的权限。通过该应用程序,我们已获取具有所有给定权限的 access_token。

documentation 中所述, 我们有 rw_ads许可,但如果我们尝试创建/更新事件,我们会收到以下错误。

{ "serviceErrorCode": 100, "message": "Not enough permissions to access: POST /adCampaignsV2/sdafnk", "status": 403 }


var request = require("request");

var options = { method: 'POST',
url: 'https://api.linkedin.com/v2/adCampaignsV2/sdafnk',
headers:
{ 'Authorization': 'Bearer XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
'Content-Type': 'application/json' },
body:
{ patch:
{ '$set':
{ runSchedule: { end: 1548405000000, start: 1547713800000 },
status: 'ACTIVE' } } },
json: true };

request(options, function (error, response, body) {
if (error) throw new Error(error);

console.log(body);
});

下面提到了创建事件的代码
var request = require("request");

var options = {
method: 'POST',
url: 'https://api.linkedin.com/v2/adCampaignsV2',
headers: {
'Authorization': 'Bearer <accessToken>',
'Content-Type': 'application/json'
},
body: {
account: 'urn:li:sponsoredAccount:<accountId>',
audienceExpansionEnabled: false,
costType: 'CPM',
creativeSelection: 'OPTIMIZED',
dailyBudget: { amount: '200', currencyCode: 'INR' },
locale: { country: 'IN', language: 'en' },
name: 'Campaign text ad test',
objectiveType: 'WEBSITE_TRAFFIC',
offsiteDeliveryEnabled: false,
runSchedule: { end: 1547708400000, start: 1547967600000 },
type: 'TEXT_AD',
unitCost: { amount: '10', currencyCode: 'INR' },
status: 'PAUSED'
},
json: true
};

request(options, function (error, response, body) {
if (error) throw new Error(error);

console.log(body);
});

最佳答案

当您执行部分更新时,标题 X-RestLi-Method必须包含在请求中并设置为 PARTIAL_UPDATE .

此外,如果您使用隐式授权类型,请检查您是否在开始时正确定义了范围。如果您使用 client-credentials grant-type 检查帐户是否具有正确的权限。

Direct Sponsored Content can be created by:

Ad Account Users with a role higher than VIEWER. Organization users with DIRECT_SPONSORED_CONTENT_POSTER or ADMINISTRATOR roles.



您在此问题中添加的代码也适用于 重新激活 一场运动。不适用于 更新/创建 一。

关于Linkedin API 无法创建事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54231100/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com