调用银行卡接口生成WEB card 接口调用结果:{"code":"11200","data":"","desc":"ent.bankcard","sid":"wcr00018072@dx18d11d7bc9da494282"}
时间: 2024-01-16 10:19:06 浏览: 142
WebService 银行卡号
5星 · 资源好评率100%
根据提供的引用内容,以下是调用银行卡接口生成WEB card 接口调用结果的示例代码:
```php
<?php
$url = "https://www.apispace.com/chuanglan/api/253-ocr-bankcard/api/";
$data = array(
'code' => '11200',
'data' => '',
'desc' => 'ent.bankcard',
'sid' => 'wcr00018072@dx18d11d7bc9da494282'
);
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data),
),
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
echo $result;
?>
```
请注意,以上示例代码是使用PHP调用APISpace银行卡OCR API接口生成WEB card的接口调用结果。您需要在代码中替换相应的URL和参数值,以便与您的API订阅服务相匹配。
阅读全文