我尝试使用下面的代码,但它给了我 403 FORBIDDEN 作为响应
import time
import urllib.request
import pandas as pd
import requests
import json
def share_point_login():
print('called')
site=" url of the excel file"
username = "username"
password = "password"
response = requests.get(site, auth=(username, password))
print(response.text)
print(response.status_code)
share_point_login()
当我尝试下载时,我得到一个403 FORBIDDEN
写有它的 excel 文件。
excel URL 文件
相同的代码在另一台笔记本电脑上为我的朋友工作