Closed Stefan2142 closed 4 years ago
this could be because the seller doesn't have the permissions needed to access List Orders as this function contains PII I believe...
Thanks for the response! I'm using my own, seller account to automate some order pulling from my store. What do you think, how can I obtain those permissions?
If I’m not mistaken, it’s the country code in the final call. When listing orders, you need to provide the marketplace ID.
If I’m not mistaken, it’s the country code in the final call. When listing orders, you need to provide the marketplace ID.
Hmm, I tried adding the marketplace id from here but still getting the same "Access denied" error. Code looks like this (i just didnt put in the id's and access key):
require "peddler"
client = MWS.orders(marketplace: "A2EUQ1WTGCTBG2",
merchant_id: "",
aws_access_key_id: "",
aws_secret_access_key: "")
response = client.list_orders('US', created_after: Date.new(2015))
puts response
Can the developer access key be rested somehow from my, seller, side?
I wasn't clear above; you need to use the ID when calling Client#list_orders
.
I wasn't clear above; you need to use the ID when calling
Client#list_orders
.
Sorry, but this is a bit confusing. These are the ID's im passing:
marketplace_id, merchant_id, aws_access_key_id, aws_secret_access_key.
What other id's I need to pass? ID of marketplace? If it is that id, then this is the code im running:
require "peddler"
client = MWS.orders(marketplace: "A2EUQ1WTGCTBG2",
merchant_id: "",
aws_access_key_id: "",
aws_secret_access_key: "")
response = client.list_orders('A2EUQ1WTGCTBG2', created_after: Date.new(2015)) #same as id as the id of marketplace
puts response
And stll getting the
C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/peddler-2.4.1/lib/peddler/client.rb:155:in
handle_http_status_error': Access to Orders.ListOrders is denied (Peddler::Errors::AccessDenied)`
If you are still getting the same error, I'm thinking the issue indeed could have to do with access, as @travisrr was pointing out above. You could write to the MWS team through Seller Central to troubleshoot further?
By the way, not sure if it matters, but A2EUQ1WTGCTBG2 is Canada, not the US.
If you are still getting the same error, I'm thinking the issue indeed could have to do with access, as @travisrr was pointing out above. You could write to the MWS team through Seller Central to troubleshoot further?
By the way, not sure if it matters, but A2EUQ1WTGCTBG2 is Canada, not the US.
You were right, I dont have the required access. In fact, my dev creds have expired after 90 days of inactivity. So my status as developer is 'Disabled" and I have to go through process of re-applying. Bummer, but this issue is resolved.
When I try to run this code (in this issue i didnt include merchant id, access key and secret access key but they were provided in the original request):
I get (last line from traceback): C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/peddler-2.4.1/lib/peddler/client.rb:155:in `handle_http_status_error': Access to Orders.ListOrders is denied (Peddler::Errors::AccessDenied)
What am I doing wrong? Im getting the same error when using the amazon scratch pad