我第一次尝试使用Gmail的API,并且正在遵循快速入门指南。创建credentials.json
后,我已经下载了quickstart.py
并将其放置在我的localhost:8080/etc...
所在的目录中。我完全复制了给出的代码,并在使用Python 3运行之后,获得了访问URL,以授权该应用使用Gmail的API。我选择我的Gmail帐户,然后按“允许”。然后,我被重定向到地址This site can't be reached: localhost refused to connect.
,该地址以IMG_DIR = "\\3504"
for img in os.listdir(IMG_DIR):
img_array = cv2.imread(os.path.join(IMG_DIR,img), cv2.IMREAD_GRAYSCALE)
img_array = (img_array.flatten())
img_array = img_array.reshape(-1, 1).T
print(img_array)
with open('\\3504.csv', 'ab') as f:
np.savetxt(f, img_array, delimiter = ',')
响应,因此授权从未通过,我的linux shell一直在等待授权被批准。我在这里做错什么了?
指南的链接:Python Quickstart Guide。我已经检查了疑难解答部分,该错误似乎在任何地方都没有得到解决。