I am using linkedin api to share post on linkedin which look like this:
How to get make post like this through api:
I am trying all combination of post body but am not able to post content like above.
{
"comment": "Check out developer.linkedin.com!",
"content": {
"title": "LinkedIn Developers Resources",
"description": "Leverage LinkedIn's APIs to maximize engagement",
"submitted-url": "https://developer.linkedin.com",
"submitted-image-url": "https://example.com/logo.png"
},
"visibility": {
"code": "anyone"
}
}
You can pass " " as the title and you will get a card that seems to be an picture.
If someone looking for a solution for this, The trick that I have found it.
so basically the solution is to pass the image url in the submitted-url field and don't pass the submitted-image-url parameter.
so instead of passing this:
which will give:
you pass the following:
which will give this:
Note that I don't pass submitted-image-url and description in the json. Description does not show on the post, so there's no point of passing anything in that field.