You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Set `LINKEDIN_API_KEY` and `LINKEDIN_API_SECRET`, configure your app to redirect
35
35
To connect to LinkedIn as a developer or just to access your own data, you don't even have to implement an OAuth 2.0 flow that involves redirects. You can simply use the 4 credentials that are provided to you in your LinkedIn appliation as part of an OAuth 1.0a flow and immediately access your data. Here's how:
36
36
37
37
```python
38
-
fromlinkedinimport linkedin
38
+
fromlinkedin_v2import linkedin
39
39
40
40
# Define CONSUMER_KEY, CONSUMER_SECRET,
41
41
# USER_TOKEN, and USER_SECRET from the credentials
@@ -71,7 +71,7 @@ You can also get those keys from [here](http://developer.linkedin.com/rest).
71
71
LinkedIn redirects the user back to your website's URL after granting access (giving proper permissions) to your application. We call that url **RETURN URL**. Assuming your return url is **http://localhost:8000**, you can write something like this:
0 commit comments