Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedding LinkedIn company updates / feeds

We have created a SharePoint 2010 web part where we display our company feed from https://www.linkedin.com/company/"Name of Company"/.

End-users need to login the first time (that is ok). But even though they login using their personal LinkedIn profile, they cannot see our company-feed. Why is that?

If the users are set as LinkedIn Designated Admins they can see the feed, otherwise they cannot.

We are using

<script type="text/javascript" src="//platform.linkedin.com/in.js">
api_key: "The key"
lang: da_DK
authorize: true
onLoad: onLinkedInLoad
</script>

I hope someone can share their knowledge.

like image 262
Jacob Schou Avatar asked Jul 02 '15 06:07

Jacob Schou


People also ask

Can you embed a LinkedIn feed?

You can embed content from the LinkedIn feed and distribute it online. The content includes posts, articles, images and videos. To embed a post from the LinkedIn feed: Navigate to the post you want to embed.

How do I share a LinkedIn feed on my website?

Simply, paste the generated LinkedIn feed embedded code on any page of your Website. Place this code into the <body> </body> section of your web page.

Can you embed a LinkedIn post in WordPress?

Correct Solution: TaggBox From our research there is only one solution that we found allows you to embed your LinkedIn Company Posts onto a WordPress website. TaggBox is a social content aggregator, which means that it can collect content from various social media platforms and create a unified 'feed' of those posts.

Can you iframe LinkedIn?

No, LinkedIn doesn't give us the ability to embed our profile on other websites. However, Twitter supports that. You can embed your profile on any website you want with few simple steps.


2 Answers

This is why :'( https://developer.linkedin.com/blog/posts/2015/developer-program-changes

Starting on May 12, 2015, we will be limiting the open APIs to only support the following uses:

  • Allowing members to represent their professional identity via their LinkedIn profile using our Profile API.

  • Enabling members to post certifications directly to their LinkedIn profile with our Add to Profile tools.

  • Enabling members to share professional content to their LinkedIn network from across the Web leveraging our Share API.

  • Enabling companies to share professional content to LinkedIn with our Company API.

Only people who can admin the feed can read/update to the company feed. All others are excluded unless you manage to get yourself promoted to LinkedIN partner: https://developer.linkedin.com/partner-programs

like image 77
ahmeij Avatar answered Oct 02 '22 08:10

ahmeij


Some light on this issue over here:

As ahmeij said, Linkedin doesnt provide anymore an easy way of embedding your company/personal profile timeline anywhere. However, there is an alternative way of implementing this.

You will make use of the RSS feed of the profile. The url will be something like this:

https://www.linkedin.com/biz/[PROFILE ID]/feed?start=0&v2=true

You can find out the numeric ID in you profile/company page.

Read the full source here: https://www.glintech.com/blog/confluence-embed-linkedin-company-feed.html

like image 37
Alberto S. Avatar answered Oct 02 '22 09:10

Alberto S.