Mathys R.
Mathys R.
You must set credentials to `false`. # Why is it doing that ? According to [Mozilla Developer](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS/Errors/CORSNotSupportingCredentials), the server is configured to `Access-Control-Allow-Origin: *`. This does not allow the credentials...
No specific reason, not everyone needs this feature. I just left the commented code to make it easier to find later with a CTRL+F
Hi @sunnycamel, I've come across the same issue as you. Here's the code I used. ```rust use lopdf::{Document, Object, ObjectId, Dictionary}; use lopdf::Object::{Array, Name}; use lopdf::dictionary; fn main() -> lopdf::Result...