Scraping Linkedin Jobs

iddqd

Newbie
Joined
Jan 2, 2018
Messages
3
Reaction score
1
Hi Guys,

I'm working on a personal project, I want to create a local web portal that implements a big repositoy for job posts scraped from different local website...

I have already scraper 5 local portals and now I'm facing the big challenge: Scraping Linkedin Job Positions...

I'm working with .Net using a common component called Selenium , it is available also for Java, Python and other languages...

I simulate the login, I scrap the jobs but after 4-5 actions it log me off asking for login again and for a captcha control....

If I try to load the job positions manually it never happens, but if I try to do it by my bot, I get kicked off...

I have tryed also to implement some random actions like scroll the page and clicking random links but I doesn't works... I get kicked off...

Can you help me ?

Thanks
 
Are you adding wait times between each action? It could be doing each action too fast.
 
Actually you just need a software designer for it.

And you can see it around google.
There is always a solution in every problem
 
linkedin is extremely difficult to scrape, you will have a hard time scraping it ;) but lots of luck to you!
 
and the captcha after they log you out

and the log outs every x actions

thats why ;) and the captcha on login can be avoided by saving cookies and reusing them for each account individually

I'm pretty sure they don't log you out after some number of actions.
Are you using selenium perhaps?
I used to scrape jobs and mass apply for groups.
 
I'm pretty sure they don't log you out after some number of actions.
Are you using selenium perhaps?
I used to scrape jobs and mass apply for groups.

When did you do that? Since microsoft bought linkedin they became very strict about this website, and keep the data secure.
 
When did you do that? Since microsoft bought linkedin they became very strict about this website, and keep the data secure.
Two to four months ago, I remember it having the new design and the big JSON responses drove me mad when coding.
 
it does not matter what language it is... everyone still uses the same libraries for scraping web, no matter the language >.>
That's not true... i usually scrape or automate with ruby or python and i never used selenium or sny of that. It's such a hassle to scraoe in .net framework
 
That's not true... i usually scrape or automate with ruby or python and i never used selenium or sny of that. It's such a hassle to scraoe in .net framework
yes, because .net is not for scraping!! why would you use it to scrape?
 
yes, because .net is not for scraping!! why would you use it to scrape?
No language is made for scraping... you would use it to scrape if you are creating a program with a gui easily
 
No language is made for scraping... you would use it to scrape if you are creating a program with a gui easily
yes, but some are much easier to do one task then to do another one... and you can make gui interfaces even with php..... .net is over-f***-rated
 
I'm pretty sure they don't log you out after some number of actions.
Are you using selenium perhaps?
I used to scrape jobs and mass apply for groups.
Hi Man,
Yes, I'm using Selenium and I only need to scrap jobs...
After 2-3 pages it logs me out and asks captcha...

I try to put random delay, random scroll, but nothing... It kick me off...
 
Hi Man,
Yes, I'm using Selenium and I only need to scrap jobs...
After 2-3 pages it logs me out and asks captcha...

I try to put random delay, random scroll, but nothing... It kick me off...

There you have it, you have no control of JavaScript and log requests, moreover the user agent is shows as selenium for whatever driver you're using.
Can easily identify that you're a bot.
 
Are you using proxies? You'll need to change your IP after every few requests to avoid captchas.
 
Are you using proxies? You'll need to change your IP after every few requests to avoid captchas.

I'm not sure if this is a bad joke given that you're a proxy seller :).

but that's not true.
If you do it the right way you, you can use one account to scrape thousands of jobs.
 
Back
Top