Download the PHP package maverickslab/ebay-legacy without Composer

On this page you can find all versions of the php package maverickslab/ebay-legacy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package ebay-legacy

eBay Trading API Package for Laravel 5.4

Requirements

Cloudinary

In order to use this package for listing products to eBay, you need to create a cloudinary account.

Dependencies

  1. Php ^5.3.3 || ^7.0
  2. guzzlehttp/guzzle ^6.2
  3. cloudinary/cloudinary_php ^1.7

Set up

  1. run composer require maverickslab/ebay-legacy
  2. run php artisan vendor:publish
  3. edit your configuration files "config/ebay.php"

Authenticating

To authorize your app to make requests to eBay on behalf of the merchant, you need to go though the authentication flow. Set up an app on the eBay developer portal.

  1. Set your accepted url to an endpoint on your app to receive the token. The default route on the package is ..yourdomain/ebay/authorized. You can extend the EbayController and override the authorized method to handle the token response.
  2. Set your declined/rejected url to an endpoint on your app to receive the token. The default route on the package is ..yourdomain/ebay/declined. You can extend the EbayController and override the declined method to handle the token response.

Make a request to ...yourdomain/ebay/install to test installation flow.

Making requests

In order to make requests, you have to make sure you have provided the required params in the ebay.php file in your config directory. To do this, copy and paste this in your .env file and make the necessary changes

EBAY_COMPATIBILITY_LEVEL=951 EBAY_RUNAME=XXXXXXXXX EBAY_API_APP_NAME=XXXXXXXXX EBAY_API_CERT_NAME=XXXXXXXXX EBAY_API_DEV_NAME=XXXXXXXXX EBAY_SIGN_IN_URL=https://signin.sandbox.ebay EBAY_BASE_URL=https://api.sandbox.ebay.com/ws/api.dll EBAY_WARNING_LEVEL=High EBAY_ERROR_LANGUAGE=en_US EBAY_USER_TOKEN=XXXXXXXXX

Request methods

Features

  1. Authenticating with eBay
  2. Import products from eBay
  3. Create listings on eBay
  4. Import orders on eBay
  5. Update orders on eBay

All versions of ebay-legacy with dependencies

PHP Build Version
Package Version
Requires php Version ^7.0
guzzlehttp/guzzle Version ^6.2
cloudinary/cloudinary_php Version ^1.7
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package maverickslab/ebay-legacy contains the following files

Loading the files please wait ....