README.md in peddler-0.7.9 vs README.md in peddler-0.7.10
- old
+ new
@@ -28,21 +28,10 @@
aws_access_key_id: 'AKIVICHZMZ2JRSSLC27W',
aws_secret_access_key: 'rOMa3ydPBTJ3AD0bxERTOX0Fv0fAC6Q0s6/czMZO'
)
```
-Or you can set them via `Client#configure`:
-
-```ruby
-client.configure do |c|
- c.marketplace_id = 'A1F83G8C2ARO7P'
- c.merchant_id = 'A2A9WNXCU02UZW'
- c.aws_access_key_id = 'AKIVICHZMZ2JRSSLC27W'
- c.aws_secret_access_key = 'rOMa3ydPBTJ3AD0bxERTOX0Fv0fAC6Q0s6/czMZO'
-end
-```
-
Alternatively, use environment variables if you only have a single set of credentials:
```sh
export MWS_MARKETPLACE_ID="A1F83G8C2ARO7P"
export MWS_MERCHANT_ID="A2A9WNXCU02UZW"
@@ -84,20 +73,24 @@
[Read more](http://rubydoc.info/github/hakanensari/peddler/MWS/FulfillmentInventory)
### Fulfillment Outbound Shipment
-**Partially implemented**
-
The MWS Fulfillment Outbound Shipment API enables you to fulfill orders placed through channels other than Amazon's retail web site, using your inventory in the Amazon Fulfillment Network. You can request previews of potential fulfillment orders that return estimated shipping fees and shipping dates based on shipping speed. You can get detailed item-level, shipment-level, and order-level information for any existing fulfillment order that you specify. You can also request lists of existing fulfillment orders based on when they were fulfilled and by the fulfillment method associated with them.
Support for creating and cancelling fulfillment orders has been implemented, but the rest of the API is not supported yet.
[Read more](http://rubydoc.info/github/hakanensari/peddler/MWS/FulfillmentOutboundShipment)
### Off Amazon Payments
The MWS Off-Amazon Payments API helps you to process payments for purchases made by buyers on your website using the Login and Pay with Amazon service. This API enables you to programmatically retrieve shipping and payment information provided by the buyer from their Amazon account. It allows you to authorize, capture, and refund payments, enabling a variety of payments scenarios.
+
+You can switch the client to the sandbox environment:
+
+```ruby
+client = MWS.off_amazon_payments.sandbox
+```
[Read more](http://rubydoc.info/github/hakanensari/peddler/MWS/OffAmazonPayments)
### Orders