网站可用性 API

发布于 2024-09-15 02:04:52 字数 1536 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不再让梦枯萎 2024-09-22 02:04:52

如果您只需要简单的功能来验证该网站是否对某些服务可见(例如 http://downforeveryoneorjustme.com),我认为 API 不是必需的,您可以简单地获取:

http://downforeveryoneorjustme.com/aaa.google.com

并检查响应中是否可以找到:

<title>It's not just you!</title>

或:

<title>It's just you.</title>

例如在类 UNIX 环境中,您可以执行如下操作:

wget -q -O - http://downforeveryoneorjustme.com/aaa.google.com |grep "It's not just you" 

并检查退出代码。也许你应该在你的代码中做类似的事情?

If you only need simple functionality to verify whether the site is visible to the some service (ex. http://downforeveryoneorjustme.com), I think the API is not necessary, you can simply get:

http://downforeveryoneorjustme.com/aaa.google.com

And check if in response you can find:

<title>It's not just you!</title>

or:

<title>It's just you.</title>

For example in unix-like environments you can do something like this:

wget -q -O - http://downforeveryoneorjustme.com/aaa.google.com |grep "It's not just you" 

And check exit code. Maybe you should do something similar in your code?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文