如何解决 InterFAX python library 400 错误?

How to solve InterFAX python library 400 error?

我一直在做一个需要发送传真的django项目。
我使用 interfax python library.
发送传真 要从 html 生成 pdf,我使用 xhtml2pdf.
我像下面这样写,但它不起作用并抛出错误。 我不知道现在该怎么办。
请帮忙。

代码

# interfax authentication
interfax_password = config("INTERFAX_PASSWORD")
interfax_account = config("INTERFAX_ACCOUNT")
interfax = InterFAX(username=interfax_account, password=interfax_password)

f = File(interfax, pdf, mime_type="application/pdf")
fax_number = config("INTERFAX_DESTINATION")

# actually sending the data
fax = interfax.outbound.deliver(fax_number=fax_number, files=[f])

抛出的错误
equests.exceptions.HTTPError: 400 Client Error: Bad Request for url:https://rest.interfax.net/outbound/faxes?faxNumber=111111111

先感谢您

我想我只需要直接使用API。