linkedin-api icon indicating copy to clipboard operation
linkedin-api copied to clipboard

👨‍💼Linkedin API for Python

Results 192 linkedin-api issues
Sort by recently updated
recently updated
newest added

Is it possible to add support for queries like this: /voyager/api/voyagerMessagingGraphQL/graphql?queryId=messengerMailboxCounts. I think currently, this is how many things are queried now on LinkedIn. Not sure though if this needs...

To the developer thank you for making such an awesome library for me to use. Running locally on the web browser / authenticated to LinkedIn everything works. When running my...

Hi! Thank you for creating this awesome repo. What would the approach look like to send a new message to a user after getting their profile? I was unable to...

error on while getting profile skills on some profiles. ` profile["skills"] = self.get_profile_skills(public_id=public_id, urn_id=urn_id) `

Hello, i tried to install version 2, however, due to problems with lxml installation i cannot manage to install the lastest version, only the unmaintained 1.0.0. Anyone can help?

Has anyone successfully managed to add filters to the search companies such as location, industry and company size?? I have tried to play with the code but to no success...

I encountered an authorization error when using https://github.com/tomquirk/linkedin-api. when I insert my login and password from linkedin, the program writes when running tests in the environment E linkedin_api.client.ChallengeException: BAD_PASSWORD Need...

Hi, Just wanted to check if this was possible, since the first time I scraped my 500+ connections for their respective urn ids, I got a warning saying that I...

```py if len(message) > 300: self.logger.info("Message too long. Max size is 300 characters") return False ```

```py def get_profile_updates( self, public_id=None, urn_id=None, max_results=None, results=[] ): ``` https://florimond.dev/en/posts/2018/08/python-mutable-defaults-are-the-source-of-all-evil/ Solution would be ``` def get_profile_updates( self, public_id=None, urn_id=None, max_results=None, results=None ): if results is None: results = []...