使用自定义网址创建Google网站的URI格式是什么

时间:2011-03-25 01:55:01

标签: python google-app-engine google-sites

使用python google appengine:

entry = client.create_site(orgName,
    description=orgDescription, 
    source_site='https://sites.google.com/feeds/site/dpau.org/org' 
    uri='https://sites.google.com/feeds/site/dpau.org/MyCustomURL')

uri =

我得到“无效的URI”

我是否使用了无效的URI格式? uri ='MyCustomUrl'也不起作用。

1 个答案:

答案 0 :(得分:0)

你在参数列表中缺少一个逗号,但我不知道这会修复你看到的错误。你能复制/粘贴实际的错误吗?

entry = client.create_site(orgName, description=orgDescription,
            source_site='https://sites.google.com/feeds/site/dpau.org/org',  # this comma right here
            uri='https://sites.google.com/feeds/site/dpau.org/MyCustomURL')