-
Notifications
You must be signed in to change notification settings - Fork 1
How to get your LinkedIn Access Token
Frederik Van Lierde edited this page Aug 31, 2022
·
1 revision
To use the LinkedIn API, you need to provide the Access Token when creating the LinkedInHelper object.
- Create an App on LinkedIn https://www.linkedin.com/developers/apps
- Once created, go to the Auth tab
- Click OAuth 2.0 tools
- Click Create Token
- Select Member Authorization + r_liteprofile + w_member_social
- Click the Request Access Token button
The created access token will be used to create an instance of the LinkedInHelper object
using CodeHelper.API.LinkedIn;
LinkedInHelper _helper = new() {AuthorID= "{AuthorID}", AccessToken ="{AccessToken}" };