LinkedIn - Og image showing in Link Inspector, but not in posts - api

When I post any blog post URL from my website to LinkedIn, the defined og image does not pull through: see screenshot here
However, when I view it in LinkedIn's post inspector it shows the image pulling through correctly: https://www.linkedin.com/post-inspector/inspect/https:%2F%2Fwww.mvplogistics.com%2Fhow-logistic-companies-run-a-smooth-supply-chain-process%2F
Additionally, the og image DOES pull through correctly on Facebook: see screenshot here
Has anyone else run into this issue? What was your fix?

Related

Share Blog On facebook Laravel

In my laravel Project, from the blog details page, I am just copying the URL and pasting it to my Facebook profile. Here, the post only shows the domain and the web title like the attached image.
But I want this image like, there need a post title and post short desc. I am attaching a photo like that. How can I do it in laravel??

Reddit image retrieval from url

An url was postet at reddit: https://www.reddit.com/r/harrypotter/comments/apwv4v/rawenclaw_or_hufflepuff/
But reddit was not able to retrieve an image from the website and is showing a default image.
How do you tell websites like reddit which image to show there? And how can you set this image in a nuxt vue file?
Reddit (and most of the other major sites that do this, like Facebook and Twitter) uses the og:url Open Graph tag, if present.
Full details of Open Graph can be found at http://ogp.me/, but fundamentally:
<meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" />
If an og:image is not present, most sites will try to guess which image on the page is the right one. They'll often get it wrong.

DNN 2sxc blog sharing parent page's meta title and description

We are having a problem with Facebook share not showing the correct picture, meta title and description.
Ex. something.com/blog/post/examplePostName/ is showing meta title and description of the something.com/blog/ parent page.
When we view the source for each of these two pages everything looks correct meta, og:graph, twitter card, but the sharer on the page (AddThis) is still not pulling the right stuff.
When we tried it out on the Facebook debugger page it is showing the correct meta, but sharing from the page (by clicking on AddThis) is still pulling the parent page meta.
Did anyone have this issue?
Could it be that we missed something in the blog app settings?
We figured this out.
We had a serverside script in our default.aspx file writing the canonical links. That was causing the issue. As soon as it was removed the facebook sharer was working fine. Great blog module!

Google Plus doesn't show article image, just shows title and article link

I am trying to share a post from my website(blog) onto Google plus but it isn't showing the featured image of the article, instead it is just showing the title and link of the article. I have microdata and also "og" tags for my page. When tested using Google Structured data testing tool, it is showing all good. I expect to get some help here. If I am trying to share the home page, it is showing an image, however if I am trying to share any post from the website, it is not showing any image. Please help, let me know if you need any more info, would be happy to provide.
One of post's from website
The og:image meta tag is being used by google plus rather than the image property within your http://schema.org/BlogPosting -as #abraham pointed out this is a broken link, it should go to http://top10grocerysecrets.com/Top-10-foods-for-releiving-inflammation.jpg - currently it includes /wp-content/uploads/sites/17/2015/07/ which isn't part of the image's path.
In the structured data it is valid, but not correct: BlogPosting has an image set but without a full path which may be why it gets ignored: the source should begin http:// etc. This is also needed if you want the image to appear in the google search results preview.
The WebPage element does not have an image set: only the BlogPosting does. Consider setting the same image property using a meta tag inside the WebPage element if fixing the BlogPosting image's path does not resolve the structured data issue, e.g.
<meta itemprop="image" content="http://top10grocerysecrets.com/Top-10-foods-for-releiving-inflammation.jpg" nt-post-thumbnail wp-post-image" alt="Print" />
In the structured data there are two unrelated mistake
the BlogPosting has author set to a link with fixed IP address http://162.244.66.231/top10grocerysecrets/author/cyoung this will reduce the chance of it connecting the blog with C Young's profile on the website.
the file name http://top10grocerysecrets.com/Top-10-foods-for-releiving-inflammation.jpg has 'releiving' in it, which is not the spelling used in the text on the image itself. This doesn't matter a great deal.

Getting list of allowable previewThumbnails for a google+ post with a link

We are trying to create a google+ post that contains a link. The link should have a preview thumbnail image that goes with it.
The api documentation says we just need to set the attachment.image.url to what we want the preview image to be, but it has to come from the set of allowable previewThumbnails. Here's the doc I'm referring to: https://developers.google.com/+/domains/api/activities
How can we get the set of allowable images?
This page: https://developers.google.com/+/domains/faq suggests that we must use an "activity preview request" to get the list, but the link in that page doesn't go somewhere that tells us how to do this.