Replies: 3 comments 3 replies
-
Hi @Kinggrass I will try to fix in this weekend and for now not supporting /Tareq |
Beta Was this translation helpful? Give feedback.
-
Hi @Kinggrass Pull request accepted and merge with Thanks :) . |
Beta Was this translation helpful? Give feedback.
-
Hi @Kinggrass Library now support sandbox Order List data from SandboxAmazonConnection amazonConnection = new AmazonConnection(new AmazonCredential()
{
AccessKey = "AKIAXXXXXXXXXXXXXXX",
SecretKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
RoleArn = "arn:aws:iam::XXXXXXXXXXXXX:role/XXXXXXXXXXXX",
ClientId = "amzn1.application-XXX-client.XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
ClientSecret = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
RefreshToken= "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
Environment=Environments.Sandbox
});
var orders = amazonConnection.Orders.GetOrders
(
new FikaAmazonAPI.Parameter.Order.ParameterOrderList()
{
TestCase = Constants.TestCase200
}
); |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to let all the requests go to the sandbox base url?
Edit:
A little bit of research in the repository :) ....
Maybe I guess?:
EnvironemntManager.Environemnt = EnvironemntManager.Environments.Sandbox;
If that is the case, then environemnt is spelled with the e after the m and not before like environment.
So above has to be EnvironmentManager.Environment = EnvironmentManager.Environments.Sandbox;
Beta Was this translation helpful? Give feedback.
All reactions