Skip to content

获取平台证书

调用获取平台证书V2接口之前,请前往微信支付商户平台升级API证书,升级后才可成功调用本接口。

请求参数类型描述
xmlobject声明请求的XML数据结构
mch_idstring商户号
sign_typestring签名类型
HMAC-SHA256 枚举值
php
$instance->v2->risk->getcertficates->postAsync([
  'xml' => [
    'mch_id'    => '1900000109',
    'sign_type' => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/risk/getcertficates')->postAsync([
  'xml' => [
    'mch_id'    => '1900000109',
    'sign_type' => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/risk/getcertficates']->postAsync([
  'xml' => [
    'mch_id'    => '1900000109',
    'sign_type' => 'HMAC-SHA256',
  ],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->risk->getcertficates->post([
  'xml' => [
    'mch_id'    => '1900000109',
    'sign_type' => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/risk/getcertficates')->post([
  'xml' => [
    'mch_id'    => '1900000109',
    'sign_type' => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/risk/getcertficates']->post([
  'xml' => [
    'mch_id'    => '1900000109',
    'sign_type' => 'HMAC-SHA256',
  ],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典类型描述
return_codestring返回状态码
SUCCESS | FAIL 枚举值之一
return_msgstring错误码描述
nonce_strstring随机字符串
signstring签名
error_codestring错误码
error_code_desstring错误代码描述
result_codestring返回状态码
SUCCESS | FAIL 枚举值之一
mch_idstring商户号
certificatesstring平台证书信息

参阅 官方文档

Published on the GitHub by TheNorthMemory