获得基本身份验证以使用ColdFusion

我正尝试使用ColdFusion发送经过身份验证的POST请求,但由于某种原因,服务器拒绝未经授权的请求。 我已经验证了凭据是正确的。

<cfhttp url="https://api.juspay.in/order/create" method="POST"  
    username="320EABE1225D45E6B13DF5D3D2BBDB80" password="">
    <cfhttpparam name="amount" type="formField" value="10">
    <cfhttpparam name="order_id" type="formField" value="cfhttp_test_order_001">
    <cfhttpparam name="customer_id" type="formField" value="10">
    <cfhttpparam name="customer_email" type="formField" value="user@mail.com">
    <cfhttpparam name="customer_phone" type="formField" value="1122112211">
    <cfhttpparam name="description" type="formField" value="test">
</cfhttp>

同样的东西在卷曲中起作用。 例如

curl https://api.juspay.in/order/create 
    -u 320EABE1225D45E6B13DF5D3D2BBDB80: 
    -d "amount=10" 
    -d "order_id=curl_test_order_001" 
    -d "customer_id=10" 
    -d "customer_email=user@mail.com" 
    -d "customer_phone=1122112211" 
    -d "description=test" 

上面的curl命令返回HTTP 200,这是我想要实现的。 我无法弄清楚我在ColdFusion代码中缺少的东西。


以下实际工作。 请考虑这个答案:

<cfhttp method="post" url="https://api.juspay.in/order/create" result="result">
    <cfhttpparam type="header" name="Authorization" value="Basic #ToBase64("320EABE1225D45E6B13DF5D3D2BBDB80:")#" />
    <cfhttpparam type="formfield" name="amount" value="10" />
</cfhttp>
链接地址: http://www.djcxy.com/p/31201.html

上一篇: Getting Basic Authentication to work with ColdFusion

下一篇: coldfusion and exceeding time limits