-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherrors.json
More file actions
31 lines (31 loc) · 856 Bytes
/
Copy patherrors.json
File metadata and controls
31 lines (31 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"401_invalid_api_key": {
"request": "GET /linkedin/jobsearch?api_key=totally_invalid_key_123&keywords=python+developer",
"status": 401,
"body": {
"error": {
"code": "INVALID_API_KEY",
"message": "Api key not recognised."
}
}
},
"400_invalid_params": {
"request": "GET /linkedin/jobsearch (no keywords)",
"status": 400,
"body": {
"error": "invalid_params",
"issues": [
{
"code": "invalid_type",
"expected": "string",
"received": "undefined",
"path": [
"keywords"
],
"message": "Required"
}
]
}
},
"_note": "Captured live on 2026-07-16. The 401 and 400 bodies are verbatim and complete. The 404 body is not reproduced here; its status and message are documented in the README."
}