We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I have configured the credentials in the configuration file and in the environment variables:
cat config.py~:
... linkedin = dict( username = '[email protected]', password = '#ExamplePwd123!' ) ...
export LI_USERNAME={[email protected]} export LI_PASSWORD={#ExamplePwd123!}
export LI_USERNAME={[email protected]}
export LI_PASSWORD={#ExamplePwd123!}
and
export [email protected] export LI_PASSWORD=#ExamplePwd123!
export [email protected]
export LI_PASSWORD=#ExamplePwd123!
I keep getting the same validation error.
Is the correct endpoint yet?
The text was updated successfully, but these errors were encountered:
I was running into this too, so I enabled HTTP request logging by adding the following to ScrapedIn.py:
ScrapedIn.py
import http http.client.HTTPConnection.debuglevel = 1
When I ran the script, it showed I was being redirected to a /checkpoint/challenge/ URL -- i.e., LinkedIn found the script's login attempt suspicious.
/checkpoint/challenge/
You can get around this by authenticating via your browser, obtaining the li_at cookie value, then changing line 338 to:
li_at
cookies = { 'li_at': 'yourHugeSessionTokenThatYouGotFromYourBrowserGoesHere' }
I've need to massage a few other lines to get the actual search/parsing working, but that should at least handle auth for you.
Sorry, something went wrong.
@pmarrapese thank you!
Hi @pmarrapese i dont understand yet at
import http http.client.HTTPConnection.debuglevel = 1 /checkpoint/challenge/ li_at cookies = { 'li_at': 'yourHugeSessionTokenThatYouGotFromYourBrowserGoesHere' }
Could you explain it step by step or in a video? Thanks!
No branches or pull requests
Hello,
I have configured the credentials in the configuration file and in the environment variables:
cat config.py~:
export LI_USERNAME={[email protected]}
export LI_PASSWORD={#ExamplePwd123!}
and
export [email protected]
export LI_PASSWORD=#ExamplePwd123!
I keep getting the same validation error.
Is the correct endpoint yet?
The text was updated successfully, but these errors were encountered: