人脸识别SDK-获取调用凭证
请求参数 | 类型 | 描述 |
---|---|---|
base_uri | string | 声明接入点 固定值 https://payapp.weixin.qq.com/ |
xml | object | 声明请求的XML 数据结构 |
store_id | string | 门店编号, 由商户定义, 各门店唯一。 |
store_name | string | 门店名称,由商户定义。(可用于展示) |
device_id | string | 终端设备编号,由商户定义。 |
attach | string | 附加字段。字段格式使用Json |
rawdata | string | 初始化数据。由微信人脸SDK的接口返回。 |
appid | string | 商户号绑定的公众号/小程序 appid |
mch_id | string | 商户号 |
sub_appid | string | 子商户绑定的公众号/小程序 appid(服务商模式) |
sub_mch_id | string | 子商户号(服务商模式) |
now | integer | 取当前时间,10位unix时间戳。 |
version | string | |
sign_type | string | MD5 | HMAC-SHA256 枚举值之一 |
php
$instance->v2->face->get_wxpayface_authinfo->postAsync([
'base_uri' => 'https://payapp.weixin.qq.com/', // 接入点
'xml' => [
'store_id' => 'IMG001',
'store_name' => '爱马哥南山店',
'device_id' => 'DEV001',
'attach' => '',
'rawdata' => 'H0kvnUgGHKuqflNwtNqCdOVpbO4FPSowudTG',
'appid' => 'wx31fdaErqR31',
'mch_id' => '12345689',
'sub_appid' => 'wx31fdaErqR31',
'sub_mch_id' => '12345689',
'now' => '1239878956',
'version' => '1',
'sign_type' => 'MD5',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance->chain('v2/face/get_wxpayface_authinfo')->postAsync([
'base_uri' => 'https://payapp.weixin.qq.com/', // 接入点
'xml' => [
'store_id' => 'IMG001',
'store_name' => '爱马哥南山店',
'device_id' => 'DEV001',
'attach' => '',
'rawdata' => 'H0kvnUgGHKuqflNwtNqCdOVpbO4FPSowudTG',
'appid' => 'wx31fdaErqR31',
'mch_id' => '12345689',
'sub_appid' => 'wx31fdaErqR31',
'sub_mch_id' => '12345689',
'now' => '1239878956',
'version' => '1',
'sign_type' => 'MD5',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$instance['v2/face/get_wxpayface_authinfo']->postAsync([
'base_uri' => 'https://payapp.weixin.qq.com/', // 接入点
'xml' => [
'store_id' => 'IMG001',
'store_name' => '爱马哥南山店',
'device_id' => 'DEV001',
'attach' => '',
'rawdata' => 'H0kvnUgGHKuqflNwtNqCdOVpbO4FPSowudTG',
'appid' => 'wx31fdaErqR31',
'mch_id' => '12345689',
'sub_appid' => 'wx31fdaErqR31',
'sub_mch_id' => '12345689',
'now' => '1239878956',
'version' => '1',
'sign_type' => 'MD5',
],
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
})
->wait();
php
$response = $instance->v2->face->get_wxpayface_authinfo->post([
'base_uri' => 'https://payapp.weixin.qq.com/', // 接入点
'xml' => [
'store_id' => 'IMG001',
'store_name' => '爱马哥南山店',
'device_id' => 'DEV001',
'attach' => '',
'rawdata' => 'H0kvnUgGHKuqflNwtNqCdOVpbO4FPSowudTG',
'appid' => 'wx31fdaErqR31',
'mch_id' => '12345689',
'sub_appid' => 'wx31fdaErqR31',
'sub_mch_id' => '12345689',
'now' => '1239878956',
'version' => '1',
'sign_type' => 'MD5',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance->chain('v2/face/get_wxpayface_authinfo')->post([
'base_uri' => 'https://payapp.weixin.qq.com/', // 接入点
'xml' => [
'store_id' => 'IMG001',
'store_name' => '爱马哥南山店',
'device_id' => 'DEV001',
'attach' => '',
'rawdata' => 'H0kvnUgGHKuqflNwtNqCdOVpbO4FPSowudTG',
'appid' => 'wx31fdaErqR31',
'mch_id' => '12345689',
'sub_appid' => 'wx31fdaErqR31',
'sub_mch_id' => '12345689',
'now' => '1239878956',
'version' => '1',
'sign_type' => 'MD5',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
php
$response = $instance['v2/face/get_wxpayface_authinfo']->post([
'base_uri' => 'https://payapp.weixin.qq.com/', // 接入点
'xml' => [
'store_id' => 'IMG001',
'store_name' => '爱马哥南山店',
'device_id' => 'DEV001',
'attach' => '',
'rawdata' => 'H0kvnUgGHKuqflNwtNqCdOVpbO4FPSowudTG',
'appid' => 'wx31fdaErqR31',
'mch_id' => '12345689',
'sub_appid' => 'wx31fdaErqR31',
'sub_mch_id' => '12345689',
'now' => '1239878956',
'version' => '1',
'sign_type' => 'MD5',
],
]);
print_r(\WeChatPay\Transformer::toArray((string) $response->getBody()));
返回字典 | 类型 | 描述 |
---|---|---|
return_code | string | 返回状态码 |
return_msg | string | 错误码描述 |
authinfo | string | SDK调用凭证。用于调用SDK的人脸识别接口。 |
expires_in | integer | authinfo的有效时间, 单位秒。 |
nonce_str | string | 随机字符串,不长于32位 |
sign | string | 参数签名。 |
appid | string | 公众号 |
mch_id | string | 商户号 |
sub_appid | string | 子商户公众账号ID(服务商模式) |
sub_mch_id | string | 子商户号(服务商模式) |
参阅 官方文档