3
我想在更新網站時運行一些KRL規則。如何在KRL webhook中選擇參數?
http://webhooks.kynetxapps.net/t/_appid_/updated?site=production&version=123456abcdef
處理這種網絡掛接的規則集開始時是這樣的::
rule site_updated {
select when webhook updated
pre {
site = event:param("site");
version = event:param("version");
}
// do something with site and version
}
從http://docs.kynetx.com/docs/Event_API我可以做出更具體的規則:
推更新後的部署腳本將獲得以下網址select when webhook updated site "test"
or webhook updated site "production"
有沒有辦法讓兩個參數沒有PRE塊?什麼是最好的方式來使用SELECT的WebHook?
你在URL中的`/ update`和`當webhook更新時選擇`不匹配,但我認爲你打算他們。 – TelegramSam 2010-12-07 23:55:21