-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
Need help with usage #17
Comments
Sorry. I forgot to mention that I am trying to use the |
Hello, I use Marketplace www.amazon.de (Germany) and I have the same problem :-( Hope someone can help us! Thanks a lot! |
Hi, were you able to get a solution? If you could send your code here so we can check? Thanks! |
Yes, I found a solution. amazonPaapi.js`const amazonPaapi = require("amazon-paapi"); const commonParameters = { let requestParameters = { exports.getItemsFromAmazonByKeyword = (productsArray) => { app.js... return data; Please let me know if there is a more elegant way. |
@RapahelS I'm having the same issue. How did you manage the import of |
I'm having the same issue. Have you fix? |
Using console.log directly on the response object does not display the full structure because contains nested objects, possibly with non-enumerable properties. To better inspect the entire response object, you need to use console.log(JSON.stringify(data, null, 2)); This did it for me. |
Hello,
I am trying to use the amazon-paapi.
If I call the paapi and print the result to the terminal, I am getting following response.
exports { ItemsResult: exports { Items: [ [exports] ] } }
How can I get and use the api response?
Do you have an example that shows how to call the code and how to get the result in json format?
The text was updated successfully, but these errors were encountered: