我正在尝试发送Dwolla api请求,并且我得到路径无效路径错误,我无法弄清楚。因此,主要错误来自请求正文,即使我确保它与api docs示例相似,并且从数据库中替换了我的信息。
任何人都可以帮我弄清楚发生了什么以及导致错误的原因。
以下是Dwolla api文档中的示例:
request_body = {
'_links': {
'source': {
'href': 'https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4'
},
'destination': {
'href': 'https://api-sandbox.dwolla.com/customers/07D59716-EF22-4FE6-98E8-F3190233DFB8'
}
},
'amount': {
'currency': 'USD',
'value': '1.00'
},
'metadata': {
'paymentId': '12345678',
'note': 'payment for completed work Dec. 1'
},
'clearing': {
'destination': 'next-available'
},
'correlationId': '8a2cdc8d-629d-4a24-98ac-40b735229fe2'
}
transfer = app_token.post('transfers', request_body)
以下是我从收集信息的例子中得到的输出:
{
'_links':{
'source':{
'href':'https://api-sandbox.dwolla.com/funding-sources/..a295c'
},
'destination':{
'href':'https://api-sandbox.dwolla.com/funding-sources/..ae0fc'
}
},
'amount':{
'currency':'USD',
'value':'15.00'
},
'metadata':{
'paymentId':'507133793',
'note':'wild night'
},
'clearing':{
'destination':'next-available'
},
'correlationId':'8a2cdc8d-629d-4a24-98ac-40b735229fe2'
}
这是发生的确切错误:
ValidationError at /4/4/add_transaction/
{"code":"ValidationError","message":"Validation error(s) present. See embedded errors list for more details.","_embedded":{"errors":[{"code":"Invalid","message":"Invalid funding source.","path":"/_links/source/href","_links":{}}]}}
答案 0 :(得分:1)
验证错误应包含嵌入的错误列表,其中包含顶级错误代码,简短消息(错误描述)以及指向无效字段的指针的路径。在这种情况下,有一些东西可以返回无效的资金来源。发送资金来源。
我的假设是,在需要验证时,资金来源是“未经验证的”,但检查这几件事情,看看是否可以解决错误!有关资金来源验证的更多信息,请参考our docs。