Linkedin API allows to create company share with comment and content. Content usually consists of submitted-image-url and submitted-url.
Share will appear as a text (comment) with image (submitted-image-url). Share is clickable and click will redirect to submitted-url.
I would like to create a simple share with comment and image (submitted-image-url) with no reference to external article.
According to server responses, it is not possible to create a share without submitted-url.
{
"errorCode": 0,
"message": "'submitted-url' and 'media-key' can not be both empty",
"requestId": ".......",
"status": 400,
"timestamp": 1470913993683
}
There is an undocumented attribute media-key. When this attribute is populated, server responds with:
{
"errorCode": 0,
"message": "Access to rich media share denied.",
"requestId": ".......",
"status": 403,
"timestamp": 1470914142403
}
There is obviously undocumented part of API that allows image uploads.
My questions are:
- Do you guys know any way to post an image share with text and without submitted-url?
- Do you know where to ask for extended API permissions for our application?