对于我的要求:
https://api.linkedin.com/v2/adAnalyticsV2?q=analytics&dateRange=(start:(day:1,month:9,year:2020),end:(day:1,month:9,year:2021))&timeGranularity=DAILY&pivot=SHARE&fields=externalWebsiteConversions,dateRange,impressions,landingPageClicks,likes,shares,costInLocalCurrency,pivot,pivotValue&companies=List(urn%3Ali%3Aorganization%3A<ORGANIZATION_ID>)
我总是得到空的回报。会是什么呢?我确实拥有所有必需的权限:
r_1st_connections_size, r_ads_reporting, r_basicprofile, r_emailaddress, r_liteprofile, r_organization_social, rw_ads, rw_organization_admin, w_member_social, w_organization_social
我的目标是获得喜欢的指标,对我/组织的所有帖子的印象。我很欣赏任何输入,非常感谢。
作为回报,我得到:
{
"paging": {
"start": 0,
"count": 10,
"links": []
},
"elements": []
}
我的股票在哪里:
https://api.linkedin.com/v2/shares?q=owners&owners=urn:li:company:<MY_ORGANIZATION_ID>
我得到一个空的分页,但总计数正确:
{
"paging": {
"start": 0,
"count": 10,
"links": [
{
"type": "application/json",
"rel": "next",
"href": "/v2/shares?count=10&owners=urn%3Ali%3Acompany%3A<MY_ORGANIZATION_ID>&q=owners&start=0"
}
],
"total": 569
},
"elements": []
}
当然,当我签入https://www.linkedin.com/developers/tools/oauth/token-inspector时,我将生成的不记名令牌用于我拥有列出权限的请求。
我期待任何意见和帮助。非常感谢。