python-linkedin
python-linkedin copied to clipboard
Python interface to the LinkedIn API
To start with permissions in the url for authentication via server.quick_api() call ?scope=r_basicprofile%20rw_nus%20r_network%20r_contactinfo%20w_messages%20rw_groups%20r_emailaddress%20r_fullprofile current linkedin permissions are as follows: r_basicprofile r_emailaddress rw_company_admin w_share
I am trying to figure out which is the python-linkedin library to use with Python 3. This looks like it has the most hope, but there are 6 pending PRs.
http://localhost:8080/code?error=invalid_scope&error_description=Your+application+has+not+been+authorized+for+the+scope+%22rw_nus%22#! it is the same error when I do step one after executing http_api.py... and going to http:/localhost:8080
https://developer.linkedin.com/support/developer-program-transition Developer Program Transition
In the github, the source code of authorization_url state is: 'state': self.state or self._make_new_state(), But, after pip install python-linkedin, the source code of authorization_url state is: self.state = self._make_new_state() 'state':...
When I run http_api and open localhost:8080 on browser as > Set LINKEDIN_API_KEY and LINKEDIN_API_SECRET, configure your app to redirect to http://localhost:8080/code, then execute: > > http_api.py > Visit http://localhost:8080...
I noticed that this library hasn't been updated recently on pypi, when are you planning to release it?
Hello Everyone, I'm trying to authenticate via c9 and the error I get is the following: `https://www.linkedin.com/uas/oauth2/authorization?scope=r_basicprofile%20rw_nus%20r_network%20r_contactinfo%20w_messages%20rw_groups%20r_emailaddress%20r_fullprofile&state=81da2582bbb27e03fec1d10c559c9cfa&redirect_uri=https%3A//linkedinpy-terenceliu.c9users.io%3A8080/&response_type=code&client_id=77gzzds2hizpxq None Traceback (most recent call last): File "main.py", line 52, in print oauth.get_access_token()...
Given credentials for debugging purposes not working: API_KEY = 'wFNJekVpDCJtRPFX812pQsJee-gt0zO4X5XmG6wcfSOSlLocxodAXNMbl0_hw3Vl' API_SECRET = 'daJDa6_8UcnGMw1yuq9TjoO_PMKukXMo8vEMo7Qv5J-G3SPgrAV0FqFCd0TNjQyG' RETURN_URL = 'http://localhost:8000' Returns 'https://www.linkedin.com/uas/oauth2/authorization?scope=r_basicprofile%20rw_nus%20r_network%20r_contactinfo%20w_messages%20rw_groups%20r_emailaddress%20r_fullprofile&state=f5fc3bc5a2dc69f01fff378b7c02bfef&redirect_uri=http%3A//localhost%3A8000&response_type=code&client_id=wFNJekVpDCJtRPFX812pQsJee-gt0zO4X5XmG6wcfSOSlLocxodAXNMbl0_hw3Vl' And when clicked message 'invalid redirect_uri. This value must match a URL...