1

我已经上传到谷歌驱动器和保管箱(公共文件夹)图像没有加载为什么当我访问谷歌驱动器的公共 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()
4

1 回答 1

1

Google 云端硬盘不会为上传的文件提供直接链接。
这可以通过从以下位置更改 URL 来规避:

https://drive.google.com/file/d/0Bworipp9D5BbQ0t1aVE2NDlsaXc/edit?usp=sharing

至:

https://docs.google.com/uc?export=download&id=0B8w52Vdma1fVMDhiZmlieEJxQ28


您可以看到这是基于以下 URL 的通用模板,您只需在原始链接中插入文件 ID:

https://docs.google.com/uc?export=download&id=

资料来源:谷歌论坛。

于 2014-05-19T13:01:01.723 回答