In Laravel I'm tring to get shares from a linkedin page
$url = 'https://api.linkedin.com/v2/shares';
// https://api.linkedin.com/v2/shares?q=owners&owners={URN}&sortBy=LAST_MODIFIED&sharesPerOwner=100
$response = Http::asForm()->withToken($authorized)->get(
$url,
[
'q' => 'owners',
'owners' => 'urn:li:organization:XXXXX',
'sortBy' => "CREATED",
'sharesPerOwner' => "1000",
'count' => "100",
]
);
This code return only shareMediaCategory = RICH or ARTICLE
How can I get Carousel or Video posts?
Thank you