linweishuai/carforb

11.0 2017-11-15 11:01 UTC

This package is not auto-updated.

Last update: 2024-09-29 05:01:37 UTC


README

1,全国车辆违章查询直连渠道,支持大车及小车违章查询 2,可返回文书号以及违章状态(已处理、未处理、已处理未缴款等) 3,支持全国300多城市 4,数据与官网实时更新 5,数据按查询收费

此PHP包由Swagger Codegen项目自动生成

  • API版本:1.0
  • 包版本:1.0
  • 构建日期:2017-11-15T16:54:38.925+08:00
  • 构建包:class io.swagger.codegen.languages.PhpClientCodegen

要求

PHP 5.4.0及更高版本

安装与使用

Composer

要通过Composer安装绑定,请将以下内容添加到composer.json

{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
    }
  ],
  "require": {
    "GIT_USER_ID/GIT_REPO_ID": "*@dev"
  }
}

然后运行composer install

手动安装

下载文件并包含autoload.php

    require_once('/path/to/SwaggerClient-php/autoload.php');

测试

要运行单元测试

composer install
./vendor/bin/phpunit lib/Tests

入门指南

请按照安装过程操作,然后运行以下命令

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new wxlink\Api\DefaultApi();
$appkey = "appkey_example"; // string | 万象平台提供的appkey

try {
    $result = $api_instance->condition($appkey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->condition: ', $e->getMessage(), PHP_EOL;
}

?>

API端点文档

所有URI相对于https://way.jd.com/

模型文档

授权文档

所有端点均不需要授权。

作者