我已经上传到谷歌驱动器和保管箱(公共文件夹)图像没有加载为什么当我访问谷歌驱动器的公共 url 时给出错误提示(403。这是一个错误。
您的客户端无权从此服务器获取 URL /U7NFy4SAHqDw6I3-Yd11AG2fi5QaCiIsn62wqOJO0gPRO68G5yfGurFiVm75HezqRtmrwlE33lxRyTF6。(客户端IP地址:103.21.166.13)
ACL Denied 这就是我们所知道的。)
这是我的 codeskulptor 代码。
import simplegui
message = "Welcome!"
# Handler for mouse click
image = simplegui.load_image('https://drive.google.com/file/d/0Bworipp9D5BbQ0t1aVE2NDlsaXc/edit?usp=sharing')
# Handler to draw on canvas
def draw(canvas):
canvas.draw_image(image, (596, 25), (1192, 50), (100, 100), (128, 128))
print image.get_width();
print image.get_height();
# Create a frame and assign callbacks to event handlers
frame = simplegui.create_frame("Home", 300, 200)
frame.set_draw_handler(draw)
# Start the frame animation
frame.start()