【发布时间】:2015-07-02 12:11:40
【问题描述】:
我的请求看起来像这样,但是当我尝试运行这段代码时,我得到了这个错误:
@Grab(group='org.codehaus.groovy.modules.httpbuilder',module='http-builder', version='0.7')
import groovy.json.JsonOutput
import groovy.json.JsonBuilder
import groovyx.net.http.RESTClient
import static groovyx.net.http.ContentType.*
import groovyx.net.http.HttpResponseException
public PaymentSpring() throws Exception {
def username ='test_XXXXXXXXXXXXXXXXXXXX'
def resp
def https = new RESTClient('https://api.paymentspring.com/api/v1')
https.auth.basic(username,'')
def charge= [
card_owner_name : 'test tset',
card_number : '345829002709133',
card_exp_month:'12',
card_exp_year : '2015',
csc:'999',
amount:'100.00',
email_address:'ujdieu@yahoo.com',
send_receipt : true
]
try {
resp = https.post(
path:'/charge',
requestContentType: URLENC,//request content synchronously for the "headers"
headers: ['Content-Type': 'application/x-www-form-urlencoded'],
body:charge
)
} catch(HttpResponseException ex) {
println ex
}
println resp
结果:
groovyx.net.http.HttpResponseException: Not Found
null
【问题讨论】:
标签: groovy payment-gateway rest-client httpbuilder