2017 © Pedro Peláez
 

library usps-api

United States Postal Service api

image

tejrajs/usps-api

United States Postal Service api

  • Friday, August 7, 2015
  • by tejrajs
  • Repository
  • 1 Watchers
  • 0 Stars
  • 74 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 3 % Grown

The README.md

USPS-api

This wrapper allows you to perform some basic calls to the USPS api. Some of the features currently supported are:, (*1)

  • Rate Calculator (Both domestic and international)
  • Zip code lookup by address
  • City/State lookup by zip code
  • Verify address
  • Create Priority Shipping Labels
  • Create Open & Distribute Shipping Labels
  • Create International Shipping Labels (Express, Priority, First Class)
  • Service Delivery Calculator
  • Confirm Tracking

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist tejrajs/usps-api "*"

or add, (*4)

"tejrajs/usps-api": "*"

to the require section of your composer.json file., (*5)

Usage

Once the extension is installed, simply use it in your code by :, (*6)

USPS Address Verify

php setTestMode(true); // Create new address object and assign the properties // apartently the order you assign them is important so make sure // to set them as the example below $address = new USPSAddress; $address->setFirmName('Apartment'); $address->setApt('100'); $address->setAddress('9200 Milliken Ave'); $address->setCity('Rancho Cucomonga'); $address->setState('CA'); $address->setZip5(91730); $address->setZip4(''); // Add the address object to the address verify class $verify->addAddress($address); // Perform the request and return result print_r($verify->verify()); print_r($verify->getArrayResponse()); var_dump($verify->isError()); // See if it was successful if($verify->isSuccess()) { echo 'Done'; } else { echo 'Error: ' . $verify->getErrorMessage(); } ?>, (*7)

The Versions

07/08 2015

dev-master

9999999-dev https://github.com/tejrajs/usps-api/blob/master/README.md

United States Postal Service api

  Sources   Download

BSD-2-Clause

The Requires

 

by tej raj shrestha

api extension yii2 usps

07/08 2015

0.0.1

0.0.1.0 https://github.com/tejrajs/usps-api/blob/master/README.md

United States Postal Service api

  Sources   Download

BSD-2-Clause

The Requires

 

by tej raj shrestha

api extension yii2 usps