api - Searching users on LinkedIn using Python-LinkedIn -
i new python programming. trying access linkedin data using pyhton.
have performed steps mentioned @ https://ozgur.github.io/python-linkedin/
when run code profile, desired result if try code else (like search_profile() or get_group(41001)) following error
linkedinerror: 400 client error: bad request url:
the code have written below:
api_key = "xyz" api_secret = "abc" return_url = "http://localhost:8080/testprj/auth/linkedin" access_token = "abcdef" application = linkedin.linkedinapplication(token=access_token) application.get_profile() # no error application.get_group(41001) # error application.search_profile(selectors=[{'people':['first_name','last_name']}]) # error
can me understand issue , how solve ?
thanks !!!
Comments
Post a Comment