2017 © Pedro Peláez
 

library meituan-openapi

meituan-openapi-php

image

ysoar/meituan-openapi

meituan-openapi-php

  • Wednesday, January 17, 2018
  • by ysoar
  • Repository
  • 1 Watchers
  • 1 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PHP SDK 接入指南 & CHANGELOG

仿照饿了么openApi编写

接入指南

  1. PHP version >= 5.4 & curl extension support
  2. 通过composer安装SDK
  3. 创建Config配置类,填入开发者ID, 业务类型ID, signKey和sandbox参数
  4. 使用sdk提供的接口进行开发调试
  5. 上线前将Config中$sandbox值设为false以及填入正式环境的signkey

安装方法

composer require ysoar/meituan-openapi:dev-master, (*1)

基本用法

    use MeituanOpenApi\Config\Config;
    use MeituanOpenApi\Api\TakeAway\ProductService;

    //实例化一个配置类
    $config = new Config($this->developerId, $this->businessId, $this->signKey, false);

    //使用config和token对象,实例化一个服务对象
    $productService = new ProductService($token, $config);

    //调用服务方法,获取资源
    $cateList = $productService->queryCateList(12345);

The Versions

17/01 2018

dev-master

9999999-dev

meituan-openapi-php

  Sources   Download

master

The Requires

  • php >=5.4.0

 

by Avatar ysoar

meituan