The API URL for searching jobs is: https://www.linkedin.com/jobs-guest/jobs/api/seeMoreJobPostings/search, and it can be called this way, returning jobs from all categories.
| Parameter | Description |
|---|
The API URL for searching jobs is: https://www.linkedin.com/jobs-guest/jobs/api/seeMoreJobPostings/search, and it can be called this way, returning jobs from all categories.
| Parameter | Description |
|---|
| Update: just use this: https://mustapp-exporter.pages.dev/ | |
| Original Developer Tools way follows (but it doesn't export reviews). | |
| Here's how to export your movie history from Must, just in case it goes under. | |
| Go to https://mustapp.com/@<your_profile_name>/watched | |
| Scroll down (hold End on keyboard) until the whole list is loaded. | |
| Open Browser Developer Tools, Console. | |
| Paste the following line and press Enter: | |
| (() => { let exportResult = ""; $('.js_item_product').each((i, el) => exportResult += $(el).find('.poster__title').text() + '\t' + $(el).find('.poster__rate').text().trim() + '\n'); copy(exportResult); })(); |