활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
How can I add a page thumbnail to appear in sharable link on Linkedin?
My links appear with a different image that is not related to my pages.
So please help me to know how can I show the image in the page in the preview of the social sharable link.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
If by publisher access you mean, the level of permissions in AEM your user have - then I would not expect that this kind of role will have access that will allow to do modifications on code level.
Just to be clear, first some changes (they are simple) on implementation level of you application needs to happen. Changes should be done to expose link to image you have configured in page properties level. Base on what you have wrote on you initial message - I understand this case is not currently supported, so appropriate amendments needs to be done.
Hi @Omar_Fathy1, according to LinkedIn documentation you should use Open Graph Protocol (OGP) to expose your page metadata - here is link to official documentation [1]
From technical point of view, link to your page thumbnail should be exposed as og:image. You need to add below meta tag in head section of your page.
<meta property="og:image" content="${link.to.thumbnail}" />
If by publisher access you mean, the level of permissions in AEM your user have - then I would not expect that this kind of role will have access that will allow to do modifications on code level.
Just to be clear, first some changes (they are simple) on implementation level of you application needs to happen. Changes should be done to expose link to image you have configured in page properties level. Base on what you have wrote on you initial message - I understand this case is not currently supported, so appropriate amendments needs to be done.
Hi @Omar_Fathy1 ,
You need to use open graph in page component . You can add below code in your head.html or content.html
You can do it on publisher as well if you have access.
<meta property="og:image" content="${pageproperties.imagelink}" />
Kr,
Sanjay