We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We can use urlfilter.adtidy.org to quickly check whether a domain is alive or not.
urlfilter.adtidy.org
Here's how it can be done: https://urlfilter.adtidy.org/v2/checkDomains?domain=doubleclick.net&domain=doubleclick.com
https://urlfilter.adtidy.org/v2/checkDomains?domain=doubleclick.net&domain=doubleclick.com
The response will contain this structure:
"info": { "domain_name": "doubleclick.com", "used_last_24_hours": true, "registered_domain": "doubleclick.com", "registered_domain_used_last_24_hours": true },
If used_last_24_hours is false the domain is most likely dead and we can show a warning about it.
used_last_24_hours
false
What rules we should analyze:
$domain
$denyallow
||example.org^
What's problematic about this all:
LinterRule
The text was updated successfully, but these errors were encountered:
@ameshkov #188 may related
Sorry, something went wrong.
No branches or pull requests
We can use
urlfilter.adtidy.org
to quickly check whether a domain is alive or not.Here's how it can be done:
https://urlfilter.adtidy.org/v2/checkDomains?domain=doubleclick.net&domain=doubleclick.com
The response will contain this structure:
If
used_last_24_hours
isfalse
the domain is most likely dead and we can show a warning about it.What rules we should analyze:
$domain
,$denyallow
, etc.||example.org^
.What's problematic about this all:
LinterRule
interface.The text was updated successfully, but these errors were encountered: