在 WhatsApp 网页上使用 cURL 时出错

在 WhatsApp 网页上使用 cURL 时出错

我正在尝试做一个 cURL,只获取网站的标题:

curl -I https://api.whatsapp.com/send/?phone=51988888888&text&app_absent=0

但是我收到提示,直到按下EnterCtrl+ C

在此处输入图片描述

我能做些什么吗?

答案1

您必须使用以下引号

curl -I "https://api.whatsapp.com/send/?phone=51988888888&text&app_absent=0"

以防止&被解释为某些任务的背景。

相关内容