When I try following python code to fetch content from a url hosted in Zendesk, i get following 403 Forbidden Error:
Python Code:
url = 'https://support.abc.com/hc...'
html_content = fetch_content(url)
if html_content:
text_content = html_to_text(html_content.decode('utf-8'))
output_pdf_file = os.path.join('output', 'output.pdf') # Output directory and file name
if not os.path.exists('output'):
os.makedirs('output')
save_text_to_pdf(text_content, output_pdf_file)
print(f'PDF saved to {output_pdf_file}')
Error:
Error fetching https://support.abc.com/hc....: HTTP Error 403: Forbidden
Can someone help here, especially code part, as I dont want to change any configuration on the Zendesk side.