Download the PHP package r.kozin/mws-finances without Composer

On this page you can find all versions of the php package r.kozin/mws-finances. 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 mws-finances

Enter your credentials

  1. Open /Samples/.config.inc.php
  2. Edit the following lines replacing the <> values with your credentials

    define('AWS_ACCESS_KEY_ID', '<Your Access Key ID>');
    define('AWS_SECRET_ACCESS_KEY', '<Your Secret Key>');
    
    define('APPLICATION_NAME', '<Your Application Name>');
    define('APPLICATION_VERSION', '<Your Application Version or Build Number>');
    
    define('MERCHANT_ID', '<Your Merchant Id>'); // If you are making calls on another seller's behalf, put their merchantID here.
    define('MARKETPLACE_ID', '<Your Marketplace Id>');

Edit the samples

In the /Samples folder you will find files that correspond to a particular Amazon Marketplace Web Service (Amazon MWS) operation. These files serve as examples to illustrate the code required to make the call for that particular operation. We will be using the SubmitFeed operation from the Feeds API section as an example.

  1. Open /Samples/SubmitFeedSample.php
  2. Uncomment the appropriate $serviceURL for the marketplace that you want to sell in. Example:

    $serviceUrl = "https://mws.amazonservices.com";
  3. Populate the $feed variable with the feed contents. Examples:

    // From a string
    $feed = "Feed content";
    
    // From a file
    $feed = file_get_contents("feed.txt");
  4. Uncomment $marketplaceIdArray and fill the array with the MarketplaceId values that you want to submit the feed to.
  5. Uncomment one of the two Amazon MWS request building methods between lines 126 - 170.
  6. Uncomment the following lines:

    invokeSubmitFeed($service, $request);
    
    @fclose($feedHandle);
  7. Start your server and navigate to the script's address to run it.

FAQ

Why does cURL return Error Response Status Code: 0?

If you receive the error Error Response Status Code: 0 from cURL when attempting to send a request to Amazon MWS using cURL, find and set CURLOPT_SSL_VERIFYPEER to false.

Why is FeedSubmissionResult being cut off?

This occurs when the server response is saved to memory. To avoid this, save the response to a file.

$responseFile = fopen("response.xml", "w");
fwrite($responseFile, $dom->saveXML());
fclose($responseFile);

What is in the /Mock folder?

The mock folder contains canned responses that simulate an Amazon MWS response. Mock responses are useful for testing without actually sending a request to Amazon MWS.


All versions of mws-finances with dependencies

PHP Build Version
Package Version
No informations.
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 r.kozin/mws-finances contains the following files

Loading the files please wait ....