Open tstraus13 opened 9 months ago
It would also be nice to have a method/functionality to do the paging ourselves. From some of the other issues I have seen it looks like some other parts of this library do allow for that. I can try to do this coding myself within the next few days / over the weekend to do a pull request for it.
Hello,
I found an issue and tracked it back to commit InventoryDetails, CatalogItemServicesa and OrderServices updated..
There is a duplicate method of GetOrdersAsync was created that took a single argument that was the same as the previous/older GetOrdersAsync method. It left out some code around getting PII data from the other method. In my code I was calling the method with a single parameter (ParameterOrderList) and before it called the older method and would properly get the PII data. Though with the new method it would error out on Amazon's side because I was requesting PII without the other parameter info that the older method provided. I worked around it by providing null on the second parameter so it would forcibly call the older method. Can this new GetOrdersAsync just be removed? I am unsure what it is doing differently from the old except for not providing the functionality the old method provided. I will provide code snippets of the two methods so you can see the differences. Thanks.
OLD:
NEW: