laravel-linkedin
laravel-linkedin copied to clipboard
'submitted-url' and 'media-key' cannot be both empty
I am getting the "'submitted-url' and 'media-key' cannot be both empty" error while sharing with image, below is my code.
$options = [
'json'=>[
'comment' => $Content,
'content' => [
'submitted-url'=> $Url,
'submitted-image-url'=> $image_url
],
'visibility' => [
'code' => 'anyone'
]
]
];
$result = LinkedIn::post('v1/people/~/shares', $options);