problem about rauth-Collection of common programming errors
Jim Steil
python linkedin rauth
I have recently taken over support for an app that uses rauth to connect to linkedin. The code that is failing is:self.linkedin= OAuth1Service( name=’linkedin’, consumer_key=self._consumer_key, consumer_secret=self._consumer_secret, request_token_url=self.request_token_url, access_token_url=self.acces
t_-_t
oauth-2.0 linkedin rauth
I am trying to connect to LinkedIn using the OAuth2Service provided by rauth. I successfully retrieve the access token. To do so, I configured a specific decoder for the json response.json_decoder = json.loads params = {‘decoder’: json_decoder} session = linkedin.get_auth_session(data=data, **params)But when doing the API call via r = session.get(‘people/~’, data={“x-li-format”:’json’},) the following response is coming back:<?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes”?> <erro
Web site is in building