I am trying to understand how to get a LinkedIn page using LinkedIn API, if I know an email.
Is it possible?
I have found Handle Lookup API, but it looks like it has not been supported already.
https://learn.microsoft.com/en-us/linkedin/shared/integrations/people/handle-lookup?view=li-lms-2022-07
Related
The access request form was filled in to request access to LinkedIn Advertising API for TataSteelEurope. However, the access was denied(reason: not a proper use case) and I am not able to further fill in the form.
We need access to LinkedIn Advertising API for fetching LinkedIn feeds of our company page(TataSteelEurope) and displaying the same in our website(www.tatasteeleurope.com).
Can anyone please help me on this ?
The access request form was filled in to request access to LinkedIn Advertising API for TataSteelEurope. However, the access was denied(reason: not a proper use case) and I am not able to further fill in the form.
We need access to LinkedIn Advertising API for fetching LinkedIn feeds of our company page(TataSteelEurope) and displaying the same in our website(www.tatasteeleurope.com).
Can anyone please help me on this ?
In linkedin documentation i learn something like {service} in rest api call but I'm not able to understand that.
Can anyone please eloborate about this rest api.
Eg: https://api.linkedin.com/v2/{service}
For Receiving linkedin Feeds you can call this url
https://api.linkedin.com/v2/activityFeeds?q=networkShares
It will only give you the posts shared by your network.
For more details go through the documentation.
I am trying to use linkedin API for sharing my web site post on linkedin. One of the feature is to schedule the post after some time or specific date. I would like to know is there any Api available for that where i can pass some parameter and the post is submitted on linkedin.
Please help if anyone have done this before
Thanks!!
I'm looking at getting some stats out of Google Analytics using the Embed API to display on our site using javascript.
My question is:
Is it possible to display the stats without the user authenticating? I.e. I would like to make some traffic statistics available to anonymous users.
Thanks,
Chris.
This is definitely possible, but you'll have to get the access token yourself (server side, using whatever OAuth 2.0 flow you want).
Once you have a valid access token, you can pass it to the gapi.analytics.auth component and use the Embed API as normal.
Here's some documentation on that:
https://developers.google.com/analytics/devguides/reporting/embed/v1/component-reference#auth
UPDATE: (07/27/2015)
A demo of server-side authorization with the Embed API is now featured on the Google Analytics Demos & Tools site. You should look there to see a working example.
I need to access Linkedin api using C#, but not able to get documents/articles how I can make call to Linkedin API.
I need to get company information using Linkedin API if I pass the company name I need to get the feeds.
Can anyone please direct me how I can proceed further.
Regards
Anand
This call for get the code:
https://www.linkedin.com/uas/oauth2/authorization?response_type=code&client_id=your-client-id&redirect_uri=your-redirect-uri&state=987654321&scope=r_basicprofile
This call for exchange code to token:
https://www.linkedin.com/uas/oauth2/accessToken?grant_type=authorization_code&code=your-code&redirect_uri=your-redirect-uri&client_id=your-client-id&client_secret=your-client-secret
And finally this call for get user info:
https://api.linkedin.com/v1/people/~:(firstName,lastName,picture-url)?oauth2_access_token=your-token&format=json
To take the client id and the client secret, you need sign up to linkedin developer, Here:
https://www.linkedin.com/secure/developer