CF2021 uses CFHTTP to pass parameters to the LINE group via IFTTT
Hi ! Dear experts
I wrote a simple program to send LINE notifications to customer groups via IFTTT.
Just pass three simple URL parameters, which are as follows:
<CFHTTP Url=https://maker.ifttt.com/trigger/mic0121_line/with/key/boYiM.... Method="get" Charset="utf-8" ResolveUrl="Yes">
<CFHTTPPARAM Type=“url” Name=“value1” Value='test_url_01'>
<CFHTTPPARAM Type="url" Name="value2" Value='測試參數 2' >
<CFHTTPPARAM Type="url" Name="value3" Value='測試參數3' >
</CFHTTP>
mic0121_line is the LINE customer group code defined in IFTTT, value1, value2, value3 are 3 URL parameters, some of which are Chinese Traditional characters (big5 code).
These codes are OK on the CF2021 Update5 test on ColdFusion Fiddle.
But why can't I send it properly when executed on my installed CF2021 Update5 computer.
Are there any settings that need to be changed in CF2021 Adminstrator?
