Audible
Audible copied to clipboard
A(Sync) Interface for internal Audible API written in pure Python.
错误提示
我在对接注册设备的时候提示{"response":{"error":{"code":"InvalidValue","index":"RYuYsd_4VoiVF34wpxzEJAAAAAAAAAABv_ARlqvxrJ-jPM4mLFcoeH3O84pv6xnbo-wcRzJIxyyhPjBCuewweBAyzdvpHH8pNWKTMsS-INu_7O68uG5-zO2zLPuh4pw3hCpbGWbU0U2E69sXj2DW1Wg23I_GGku1y0pmefIWzfmLwdMkXSDjzkO7OzK3JzmjmcegCPIihpnSNbodgAtiE06b6cfjDnEcaPoTICxuYcXvy1zOOuXsSAYHULgBTO_XXnJHGw==","message":"One or more provided values are invalid."}},"request_id":"67dde610-45d1-4cef-9c3f-fd4f2f58ddf3"}, 请问怎么处理
A [library](https://audible.readthedocs.io/en/latest/misc/external_api.html#get--1.0-library) response returns a 13-digit numeric `state-token` in the response headers. Using this state token in the url query on the next request like `/1.0/library?state_token=1234567654321` will return only changes...
I'm working on my new project [MyAudible](https://github.com/mkb79/myaudible). I have no experience with Django. Everyone is welcome to help me building a good Django app!
Hello there, I started working with this repo a few hours ago because I do like the idea of archiving audiobooks. This is a plus catalog audiobook so anyone with...
Thank you for this great tool. I am able to run this example with no issue: https://github.com/mkb79/Audible/blob/3ffd04ad0ba2b837da7a3b5f85489025efdd96fd/examples/get_activation_bytes.py#L13-L18 However I noticed that I do have to complete a CAPTCHA. I was...
Having a hard time understanding how does the BestSellers option in products_sort_by parameter works, for instance in [/1.0/catalog/products](https://audible.readthedocs.io/en/latest/misc/external_api.html#get-1-0-catalog-products) endpoint. I'm trying to make API calls about the products on audible...
I have this [java script](https://github.com/mkb79/Audible/files/6151259/encryptionhelper.txt) which encrypts a strigified JSON object. Amazon apps using this string as the "frc" cookie. My app creates the frc cookie from custom bytes. Amazon...
**Describe the bug** When fetching the library (calling aget_from_api in models.py::Library), if the library is very large (or transfer is slow), the underlying httpx call can timeout, **Workaround** Replace: `resp...
1. Use math.ceil instead of ldata when calculating ldata, otherwise encryption could sometimes result in invalid output, decryption could sometimes fail as well. 2. Use math.floor instead of int in...