Results 219 comments of mkb79

> So I was able to get the refresh function working, but I did have to add "Content-Type": "application/json" to the request headers. The right Content-Type for `https://api.amazon.com/auth/token` and `https://api.amazon.com/ap/exchangetoken/cookies`...

@csandman This works for me ```node-js const fetch = require('node-fetch') const res = fetch('https://api.amazon.com/ap/exchangetoken/cookies', { method: 'POST', headers:{ 'Content-Type': 'application/x-www-form-urlencoded', "x-amzn-identity-auth-domain": "goodreads.com", "User-Agent": 'AmazonWebView/GoodreadsForIOS App/4.0.1/iOS/15.4.1/iPhone', "Accept-Encoding": "gzip" }, body: new...

> Interesting that you say that because I saw the same thing in some different AWS docs, but it has been working so far for all of the other requests...

Can you try the `count-aycl-files` branch with `--ignore-errors` flag set? This will ignore these errors and proceed with the next. How discussed in #115 this could be items which are...

So you have the asin of the books? And your marketplace?

Can you give me the output of the following command `audible api -p "response_groups=product_desc,media, product_attrs,relationships,series,customer_rights,pdf_url" -i 4 library/B09ZLFY5YG`. I will check this. And maybe you run the download command with...

That looks inconspicuous. Can you try `audible api -m post -b '{"supported_drm_types": ["Dash", "HlsCmaf", "Hls", "Mpeg"], "quality": "High", "consumption_type": "Streaming", "response_groups": "last_position_heard, pdf_url, content_reference"}' -i 4 content/B09ZLFY5YG/licenserequest` please. This makes...

Thank you. The streaming license is granted but the download license not. Maybe there are two reasons for this: 1. There is a rate limit for downloads 2. This item...

@tdguchi > Its there anyway to bypass it (tomorrow, when limits were gone) does bunch-size avoid it? The bunch size has another meaning. At the beginning of the download command,...

@tdguchi Please copy the copy below to a file in your plug-in dir and name it `cmd_get-license.py` and then run it with `audible get-license B09ZLFY5YG` ```python import secrets from typing...