import com.chinaums.open.api.OpenApiCache;
import com.chinaums.open.api.OpenApiContext;
import com.chinaums.open.api.constants.ConfigBean;
import com.chinaums.open.api.internal.util.http.HttpTransport;
import java.util.UUID;
public class OpenApiSdkTest {
public static void main(String[] args) throws Exception{
String url = "https://api-mop.chinaums.com/v1/netpay/wx/app-pre-close";
//开发者ID
String appId = "平台分配";
//开发者秘钥
String appKey = "平台分配";
//实例化客户端
ConfigBean configBean = new ConfigBean();
OpenApiContext context = new OpenApiContext();
String request = "{\"requestTimestamp\":\"2022-04-15 09:49:59\",
\"merOrderId\":\"346E202307151017581097208712\",
\"instMid\":\"APPDEFAULT\",
\"mid\":\"898201612345678\",
\"tid\":\"88880001\",
\"srcReserve\":\"C20220119000001\"}";
context.setStartTime(System.currentTimeMillis());
context.setRequestId(UUID.randomUUID().toString().replace("-", ""));
context.setOpenServUrl(url.split("/v")[0].concat("/"));
context.setApiServiceUrl(url);
context.setVersion(url.split("/")[3]);
context.setAppId(appId);
context.setAppKey(appKey);
context.setConfigBean(configBean);
context.setServiceCode(url.split("/v")[1].substring(1));
OpenApiCache.getCurrentToken(context);
System.out.println(HttpTransport.getInstance().doPost(context, request));
}
}
<?php
require_once "../utils/Log.php";
require_once "../utils/Tools.php";
require_once "../DefaultOpenApiClient.php";
class DataRequest
{
public $url = "";
public $serviceCode = "";
public $apiVersion ="";
public $needToken = true;
public $needDataTag = false;
public $data;
function __construct($data, $url)
{
$this->data = $data;
$apiVersion = preg_split("/[/]+/s",$url)[2];
$this->apiVersion = $apiVersion;
$serviceCode = strstr($url,$apiVersion);
$this->url = strstr($url,"/".$apiVersion,true);
$this->serviceCode = preg_replace("/^" . preg_quote($apiVersion, "/") . "/", "", $serviceCode);
}
}
class DataDemo{
public function main(){
$appid = "平台分配";
$appkey = "平台分配";
$url = "https://api-mop.chinaums.com/v1/netpay/wx/app-pre-close";
$data = json_encode(array("requestTimestamp"=>"2022-04-15 09=>49=>59",
"merOrderId"=>"346E202307151017581097208712",
"instMid"=>"APPDEFAULT",
"mid"=>"898201612345678",
"tid"=>"88880001",
"srcReserve"=>"C20220119000001"));
$reqiest = new DataRequest($data,$url);
$client = new DefaultOpenApiClient();
$content = $client->execute($reqiest,$appid,$appkey);
$obj = json_decode($content);
print_r($obj->errCode);
print_r($obj->errInfo);
}
}
$p = new DataDemo();
$p->main();
?>
# -*- coding: utf-8 -*-
from webapi.DefaultOpenApiClient import DefaultOpenApiClient
url = "https://api-mop.chinaums.com/v1/netpay/wx/app-pre-close"
class DataRequest(object):
def __init__(self, data: dict) -> dict:
self.data = data
self.serviceCode = url[len(url.split("/v")[0])+len(url.split("/")[3])+1: len(url)]
self.apiVersion = url.split("/")[3]
self.needToken = True
self.needDataTag = True
appId="平台分配"
appKey="平台分配"
client = DefaultOpenApiClient(appId, appKey)
cls = DataRequest({\"requestTimestamp\":\"2022-04-15 09:49:59\",
\"merOrderId\":\"346E202307151017581097208712\",
\"instMid\":\"APPDEFAULT\",
\"mid\":\"898201612345678\",
\"tid\":\"88880001\",
\"srcReserve\":\"C20220119000001\"})
response = client.execute(cls)
print(str(response.get("data")))
print(response.get("errCode"))
print(response.get("errInfo"))
print(response.get("resultCode"))
print(response.get("resultInfo"))
微信(微信跳转小程序专用)订单关闭
URL
- 生产环境:
POST
https://api-mop.chinaums.com/v1/netpay/wx/app-pre-close - 测试环境:
POST
https://test-api-open.chinaums.com/v1/netpay/wx/app-pre-close
描述:用户创建订单之后,对未支付的订单进行关闭操作
ContentType:HTTP(S) + JSON
请求头
名称 | 必填 | 描述 | 示例值 |
---|---|---|---|
Authorization | 是 | 认证内容 (认证参考天满开发者中心->接入指引->平台认证方式:开发者中心) | OPEN-BODY-SIG AppId="****",Timestamp="20170606135700",Nonce="99930a147f5353dd8a8f29a5329f37e9",Signature="IPmdGHYCcfN+mto0/02zkwoUF1NT3YqPKaUykMaec1T=" |
请求参数
名称 | 类型 | 必填 | 最大长度 | 描述 | 示例值 |
---|---|---|---|---|---|
requestTimestamp | string | 是 | 报文请求时间 格式:yyyy-MM-dd HH:mm:ss | 2022-04-15 09:49:59 | |
merOrderId | string | 是 | 6..32 | 商户订单号 原交易订单号 | 346E202307151017581097208712 |
instMid | string | 是 | - | 业务类型 APPDEFAULT | APPDEFAULT |
mid | string | 是 | 15 | 商户号 | 898201612345678 |
tid | string | 是 | 8 | 终端号 | 88880001 |
srcReserve | string | 否 | <=255 | 请求系统预留字段 | C20220119000001 |
响应示例
{
"errCode":"SUCCESS",
"errMsg":"",
"responseTimestamp":"2022-04-15 09:49:59",
"mid":"898310148160568",
"tid":"88880001",
"connectSys":"UNIONPAY",
"settleDate":"2022-04-15",
"settleRefId":"35240829084N",
"targetMid":"556266114",
"srcReserve":"C20220119000001",
"merOrderId":"346E202307151017581097208712",
"merName":"测试商户",
"seqId":"35240829084N",
"status":"TRADE_CLOSED",
"targetStatus":"SUCCESS|SUCCESS",
"targetSys":"WXPay",
"totalAmount":"360"
}
响应参数
名称 | 类型 | 必填 | 最大长度 | 描述 | 示例值 |
---|---|---|---|---|---|
errCode | string | 是 | <=64 | 错误代码 平台错误码 业务错误码 |
SUCCESS |
errMsg | string | 否 | <=255 | 错误说明 | |
responseTimestamp | string | 是 | 报文响应时间 格式:yyyy-MM-dd HH:mm:ss | 2022-04-15 09:49:59 | |
mid | string | 是 | 商户号 | 898310148160568 | |
tid | string | 是 | 终端号 | 88880001 | |
connectSys | string | 否 | 链接系统 | UNIONPAY | |
settleDate | string | 否 | 结算时间 报文响应时间,格式:yyyy-MM-dd | 2022-04-15 | |
settleRefId | string | 否 | 清分ID 如果来源方传了bankRefId就等于bankRefId,否则等于seqId | 35240829084N | |
targetMid | string | 否 | 支付渠道商户号,各渠道情况不同,酌情转换。 | 556266114 | |
srcReserve | string | 否 | <=255 | 请求系统预留字段 | C20220119000001 |
merOrderId | string | 否 | 商户订单号 | 346E202307151017581097208712 | |
merName | string | 否 | 商户名称 | 测试商户 | |
seqId | string | 否 | 平台流水号 | 35240829084N | |
status | string | 否 | 交易状态 | TRADE_CLOSED | |
targetStatus | string | 否 | 目标平台状态 | SUCCESS | |
targetSys | string | 否 | 目标平台代码 | WXPay | |
totalAmount | number | 否 | 支付总金额 单位:分 | 360 |