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

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -