我正在尝试使用HTML创建一个按钮,该按钮将激活连接到IFTTT的Webhook。我是编码/ HTML的新手,所以如果我说错任何东西,我们深表歉意。安全性对我来说不是问题,因为我要放入的网站已被密码锁定。 IFTTT在此提供有关其Webhook服务的文档
https://ifttt.com/maker_webhooks
这是我已经编写的示例代码(是的,我知道这很简单)
<p>
Click the Button to activate the Webhook through IFTTT!
</p>
<button class="otherButton" onclick="runWebhook();">Run Webhook</button>
<script>
function runWebhook()
{
//do webhook stuff here
}
</script>