I am trying to scrape files from an MFT server. But after using my credentials to log into the portal using the following code:
url = 'MFT Portal URL'
Name = 'Name'
Password = 'Password'
result = requests.get(url, auth=(Name, Password)).content
I get the following result, instead of the actual web content:
I have also tried using Beautiful Soup but the results were the same.
What could be the reason for this? Is there any other way I can fetch files from an MFT server using python? Any help is appreciated.
