ColdFusion CFHTTP issue

I have the following code, but I keep getting connection failure.

<cfhttp method="GET" url="https://XXXXXX.fogbugz.com/api.asp" result="LogonAttempt">
    <cfhttpparam type="URL" name="cmd" value="logon" />
    <cfhttpparam type="URL" name="email" value="XXXXX"/>
    <cfhttpparam type="URL" name="password" value="XXXXXX"/>
</cfhttp>

If I make a call to Google or any other page it works fine. Any idea on how to fix this?

Using CF9


I would double check your url, I was able to confirm that my fogbuzz account was available by only switching the url and logon credentials. Tested in CF10 local instance.

To trouble shoot further please post at least the partial error or response.

链接地址: http://www.djcxy.com/p/5284.html

上一篇: ColdFusion cfhttp在上传docx文件时丢失了元数据

下一篇: ColdFusion CFHTTP问题