LinkedIn API unable to view _any_ company profile

It looks like they turned that feature off. See https://developer.linkedin.com/support/developer-program-transition New requirement for Companies API All calls to Companies API endpoints will require the authenticated user to be flagged as an administrator of the LinkedIn Company Page that is the target of the API call. You become the administrator of a page when you create … Read more

Any queries to the api.linkedin.com/v2/ return “Not enough permissions to access …”

You need to request permissions from LinkedIn. Now all requests to api.linkedin.com/v2/ successfully pass to me! We received permissions (r_ad_campaigns and rw_organization) after request offer by address https://business.linkedin.com/marketing-solutions/marketing-partners/become-a-partner/marketing-developer-program Leave a request at the address below and LinkedIn will answer you. Good luck!

999 Error Code on HEAD request to LinkedIn

It looks like they filter requests based on the user-agent: $ curl -I –url https://www.linkedin.com/company/linkedin | grep HTTP HTTP/1.1 999 Request denied $ curl -A “Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3” -I –url https://www.linkedin.com/company/linkedin | grep HTTP HTTP/1.1 200 OK

How to make a custom LinkedIn share button

Official LinkedIn API for sharing: https://developer.linkedin.com/docs/share-on-linkedin Read Terms of Use! Example link using “Customized URL” method: http://www.linkedin.com/shareArticle?mini=true&url=https://stackoverflow.com/questions/10713542/how-to-make-custom-linkedin-share-button/10737122&title=How%20to%20make%20custom%20linkedin%20share%20button&summary=some%20summary%20if%20you%20want&source=stackoverflow.com You just need to open it in popup using JavaScript or load it to iframe. Simple and works – that’s what I was looking for! EDIT: Video attached to a post: I checked that you can’t really embed … Read more

iOS linkedin authentication

Integrating LinkedIn Login in a Swift application First, download the LinkedIn iOS SDK. I’ll be using the 1.07 stable version for this example. I’ll be following the integration guide here. Create a new Developer Application. Add your iOS app’s Bundle Identifier to your LinkedIn App under Mobile. Add your LinkedIn app Id and URL Scheme … Read more

Getting LinkedIn Profile Picture

You can retrieve the original photo size with this call: http://api.linkedin.com/v1/people/~/picture-urls::(original) Note that this could be any size, so you’ll need to do scaling on your side, but the image is the original one uploaded by the user.

Oauth 2.0 authorization for LinkedIn in Android

Oauth2.0 authentication for LinkedIN. Step 1: Register your app with linkedIn by following this document. And get your api_key and api_secret. Step 2: MainActivity: public class MainActivity extends Activity { /*CONSTANT FOR THE AUTHORIZATION PROCESS*/ /****FILL THIS WITH YOUR INFORMATION*********/ //This is the public api key of our application private static final String API_KEY = … Read more