1

我一直在做一个需要发送传真的 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

先感谢您
4

1 回答 1

0

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

于 2021-07-08T06:31:31.730 回答