🔥 LinkedIn Jobs Scraper avatar
🔥 LinkedIn Jobs Scraper

Pricing

$29.99/month + usage

Go to Store
🔥 LinkedIn Jobs Scraper

🔥 LinkedIn Jobs Scraper

Developed by

Bebity

Bebity

Maintained by Community

ℹ️ Designed for both personal and professional use, simply enter your desired job title and location to receive a tailored list of job opportunities. Try it today!

3.6 (14)

Pricing

$29.99/month + usage

372

Total users

13K

Monthly users

1.6K

Runs succeeded

>99%

Issues response

68 days

Last modified

4 months ago

GL

Crawling hardcoded company and company ID

Closed

gnomonic_laptop opened this issue
11 days ago

seems Google and other company are hard-coded, I am not able to get the result due to that information in Input by default, whereas those information was optional in input screen and I had removed it, still it is showing in the run log, can you look into it?

bebity avatar

Bebity (bebity)

11 days ago

Hi there,

Thanks for reaching out!

Please share your run URL with us so we can take a closer look. In the meantime, you can try editing the input manually to remove any hardcoded companies or IDs — that should get things working as expected.

Looking forward to your reply!

Best, Bebity

GL

gnomonic_laptop

10 days ago

https://console.apify.com/actors/BHzefUZlZRKWxkTck/runs/N8tkJr3jn7fABODQk#input

I tried doing it but somehow i am not able to see edit field to remove company name, I am using n8n automation to run the actor.

I have attached input code for your reference.

bebity avatar

Bebity (bebity)

10 days ago

✅ Fix for your Apify + n8n input issue

You're not getting results because your input includes filters like:

{ "companyName": ["Google", "Microsoft"], "companyId": ["76987811", "1815218"] }

These companies don’t currently list "CEO" jobs in India — so the actor returns nothing.


🛠 Solution: Create a clean task

  1. Go to Apify Console – Tasks

  2. Click Create new task

  3. Use this input instead:

{ "proxy": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }, "contractType": "F", "experienceLevel": "5", "location": "India", "title": "CEO", "publishedAt": "", "rows": 50 }

  1. Save the task

▶️ Use in n8n

In your Apify node, select this new task or

Use an HTTP Request node with:

POST https://api.apify.com/v2/actor-tasks/<TASK_ID>/runs-sync-get-dataset-items?token=<API_TOKEN>

And the same JSON body shown above.

GL

gnomonic_laptop

9 days ago

It is sorted, thank you for the prompt response.