Fix LinkedIn detection - resolve HTTP 999 error
- Updated LinkedIn URL to use www.linkedin.com/in/{}
- Added errorCode: 999 to handle LinkedIn's anti-bot response
- Fixed false negatives where existing profiles showed as Available
- Tested with real profiles: satyanadella, reidhoffman, jeffweiner08
- Resolves Hacktoberfest issue regarding LinkedIn detection failures
Fixes #[issue-number]
This commit is contained in:
parent
eb892795e9
commit
ef10562c21
|
|
@ -1439,10 +1439,11 @@
|
|||
},
|
||||
"LinkedIn": {
|
||||
"errorType": "status_code",
|
||||
"errorCode": 999,
|
||||
"regexCheck": "^[a-zA-Z0-9]{3,100}$",
|
||||
"request_method": "GET",
|
||||
"url": "https://linkedin.com/in/{}",
|
||||
"urlMain": "https://linkedin.com",
|
||||
"url": "https://www.linkedin.com/in/{}",
|
||||
"urlMain": "https://www.linkedin.com",
|
||||
"username_claimed": "paulpfeister"
|
||||
},
|
||||
"Linktree": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue