2017 © Pedro Peláez
 

library soazposting

A sdk for soazposting api

image

xywl/soazposting

A sdk for soazposting api

  • Wednesday, July 12, 2017
  • by ouranoshong
  • Repository
  • 1 Watchers
  • 0 Stars
  • 16 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

soazposting

A sdk for soazposting api, (*1)

Installation

composer install xywl/soazposting

Usage

Demo code

  • Initialize a api client
use XYWL\SoazPosting\Client;

// set apiUsername, apiTokent, soazUsername, wsdlUri
$client = new Client("apiUsername", "apiTokent", "soazUsername", "wsdlUri");

//Or

$client =  new Client();
$client->setApiUsername('name')
    ->setApiToken('token')
    ->setSoazUsername('otherName')
    ->setWSDLUri('uri');

This sdk maintain two api request Class, XYWL\SoazPosting\CreateSoazOrderRequest for create order record , and XYWL\SoazPosting\GetSoazAddressPackRequest for get address pack file binary data., (*2)

Here go for code:, (*3)

  • Make a request for create order record, then will get a response which instance of XYWL\SoazPosting\Base\createSoazOrderResponse
use XYWL\SoazPosting\CreateSoazOrderRequest;

$request = new CreateSoazOrderRequest();

// set request parameters according to api document

$request->setXXX()

//now use client to handle request

$response = $client->handle($request);

//var_dump($response);

  • Make a request for get address pack file, then will get a response which instance of XYWL\SoazPosting\Base\getSoazAddressPackResponse
use XYWL\SoazPosting\GetSoazAddressPackRequest;

$request = new GetSoazAddressPackRequest();

// set request parameters according to api document

$request->setXXX()

//now use client to handle request

$response = $client->handle($request);

//var_dump($response);

The Versions

12/07 2017

dev-master

9999999-dev

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

12/07 2017

v0.2.4

0.2.4.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

12/07 2017

v1.0

1.0.0.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

12/07 2017

v0.2.3

0.2.3.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

09/03 2017

0.2.2

0.2.2.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

09/03 2017

0.2.1

0.2.1.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

09/03 2017

0.2

0.2.0.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar ouranoshong

08/03 2017

0.1

0.1.0.0

A sdk for soazposting api

  Sources   Download

MIT

by Avatar hong