How to get large LinkedIn Image Share Format

只愿长相守 提交于 2019-12-18 02:58:52

问题


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"
        }
}

回答1:


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:

{   
    "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"
    }
}

which will give:

you pass the following:

{   
    "comment": "Check out developer.linkedin.com!",
    "content": {
        "title": "LinkedIn Developers Resources",
        "submitted-url": "https://www.example.com/someimage.jpg"
    },
    "visibility": {
        "code": "anyone"
    }
}

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.




回答2:


You can pass " " as the title and you will get a card that seems to be an picture.



来源:https://stackoverflow.com/questions/41846273/how-to-get-large-linkedin-image-share-format

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!