如何获得大型LinkedIn图像共享格式

时间:2017-01-25 08:02:04

标签: asp.net linkedin-api

我使用linkedin api在linkedin上分享帖子,如下所示:

enter image description here

如何通过api发布这样的帖子: enter image description here

我正在尝试邮政机构的所有组合,但我无法发布上述内容。

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

2 个答案:

答案 0 :(得分:2)

如果有人在寻找解决方案,那就是我找到它的诀窍。

所以基本上解决方案是在 submitted-url 字段中传递图片网址,不要传递 submitted-image-url 参数。

所以不要传递这个:

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

将提供:enter image description here

您通过以下内容:

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

会给出这个:

enter image description here

请注意,我不会在json中传递 submitted-image-url description 。描述没有显示在帖子上,因此没有必要在该字段中传递任何内容。

答案 1 :(得分:0)

你可以传递“”作为标题,你会得到一张似乎是图片的卡片。