我有一个需要 Kerberos 凭据(单点登录)进行身份验证的 URL。我需要生成此 URL 响应网页的 PDF。但是当我尝试使用 pdfkit 时,我遇到了身份验证错误。谁能提供需要设置的必要标题。
import pdfkit
options = {
'custom-header': [('WWW-Authenticate:', 'negotiate')]
}
pdfkit.from_url(
'URL-link',
'shaurya.pdf', options=options)