We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should be possible to handle multiple marketplaces by defining marketplaceId as Array in store config file.
For example: in AmazonOrderList class, we can check if marketplaceId is Array then loop and set each ID to options[marketplaceId.Id.$x]
The text was updated successfully, but these errors were encountered:
@sahat81 Exactly I've used same like this
'US' => [ 'merchantId' => env('mwsMerchantId'), 'marketplaceId' => env('mwsMarketplaceId_US'), 'keyId' => env('mwsKeyId'), 'secretKey' => env('mwsSecretKey'), 'mwsAuthToken' => env('mwsAuthToken'), 'amazonServiceUrl' => env('mwsAmazonServiceUrl_US'), 'muteLog' => env('mwsMuteLog', false), ], 'CA' => [ 'merchantId' => env('mwsMerchantId'), 'marketplaceId' => env('mwsMarketplaceId_CA'), 'keyId' => env('mwsKeyId'), 'secretKey' => env('mwsSecretKey'), 'mwsAuthToken' => env('mwsAuthToken'), 'amazonServiceUrl' => env('mwsAmazonServiceUrl_CA'), 'muteLog' => env('mwsMuteLog', false), ], 'UK' => [ 'merchantId' => env('mwsMerchantId'), 'marketplaceId' => env('mwsMarketplaceId_UK'), 'keyId' => env('mwsKeyId'), 'secretKey' => env('mwsSecretKey'), 'mwsAuthToken' => env('mwsAuthToken'), 'amazonServiceUrl' => env('mwsAmazonServiceUrl_UK'), 'muteLog' => env('mwsMuteLog', false), ],
Sorry, something went wrong.
No branches or pull requests
It should be possible to handle multiple marketplaces by defining marketplaceId as Array in store config file.
For example: in AmazonOrderList class, we can check if marketplaceId is Array then loop and set each ID to options[marketplaceId.Id.$x]
The text was updated successfully, but these errors were encountered: