I'm trying to fetch/search jobs from the Linkedin API. After creating an app, verifying it and getting an access-tokens (2-legged authorization)
- I'm able to get my data by sending GET requests to https://api.linkedin.com/v2/me (with Authorization header)
- But
- When I try: GET: https://api.linkedin.com/v2/recommendedJobs?q=byMember (taken from official API page) I get the following: "403: Not enough permissions to access: GET-byMember /recommendedJobs"
- And when I try
- GET : https://api.linkedin.com/v1/job-search (or https://api.linkedin.com/v1/jobs) I get: This resource is no longer available under v1 APIs
- GET : https://api.linkedin.com/v2/job-search (or https://api.linkedin.com/v2/jobs) i get "Resource does not exist under v2"
I've also tried logging using the Member Authorization (3-legged authorization), but nothing was better.
- What's the API for getting jobs?
- What type of authorization do I require?
- What am I doing wrong?
Thanks everyone!