Being new to API, I am currently trying to use linkedIn information for my application. For that I'm using python-linkedin interface for accessing linkedIn API. I installed this module by using following command:
pip install python-linkedin.
I have written one sample python file to use this interface as:
from linkedin import linkedin
API_KEY = "api-key"
API_SECRET = "api-secret"
RETURN_URL = "http://localhost:8000"
authentication = linkedin.LinkedInAuthentication(API_KEY, API_SECRET, RETURN_URL, linkedin.PERMISSIONS.enums.values())
print authentication.authorization_url
application = linkedin.LinkedInApplication(authentication)
I got the following output-
I want to integrate this with my application. And I need to fetch data from linkedIn and store it in database. Does any one know how to do that?