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

发布于 2024-10-26 00:12:40 字数 342 浏览 7 评论 0原文

使用 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' 也不起作用。

Using 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')

I get "Invalid URI" for the uri=

Am I using an invalid format for the URI? uri='MyCustomUrl' does not work either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他夏了夏天 2024-11-02 00:12:41

您的参数列表中缺少一个逗号,但我不知道这是否可以解决您所看到的错误。您可以复制/粘贴实际的错误吗?

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')

You're missing a comma in your arguments list, though I don't know that this would fix the error you're seeing. Can you copy/paste the actual error?

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')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文