Fix Kongregate F+

Attempts were met with a Varnish error page presenting 54113 (possibly Fastly related).

Change to User Agent necessary to avoid Varnish/Fastly issues.
Change to Accept necessary to avoid infinite 302 redirection.
Without BOTH of these changes, attempts will fail.

Both changes being made also permit the use of status_code rather than message.
pull/2068/head
Paul Pfeister 1 month ago
parent 4006556daa
commit 482f216ff9

@ -1163,8 +1163,11 @@
"username_claimed": "blue"
},
"Kongregate": {
"errorMsg": "Sorry, no account with that name was found.",
"errorType": "message",
"errorType": "status_code",
"headers": {
"User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/116.0",
"Accept": "text/html"
},
"regexCheck": "^[a-zA-Z][a-zA-Z0-9_-]*$",
"url": "https://www.kongregate.com/accounts/{}",
"urlMain": "https://www.kongregate.com/",

Loading…
Cancel
Save