Getting the error "InvalidParameters":{"Timeout":["The field Timeout must be between 10 and 1200."]}, when running the sample conversion as below:
System.out.println("Converting WEB to PDF");
CompletableFuture result = ConvertApi.convert("web", "pdf",
new Param("url", "https://en.wikipedia.org/wiki/Data_conversion"),
new Param("filename", "web-example")
);
Getting the error "InvalidParameters":{"Timeout":["The field Timeout must be between 10 and 1200."]}, when running the sample conversion as below:
System.out.println("Converting WEB to PDF"); CompletableFuture result = ConvertApi.convert("web", "pdf",
new Param("url", "https://en.wikipedia.org/wiki/Data_conversion"),
new Param("filename", "web-example")
);
Note: This is the code snippet from the examples provided by you.