使用自定义网址创建 Google 网站的 URI 格式是什么
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的参数列表中缺少一个逗号,但我不知道这是否可以解决您所看到的错误。您可以复制/粘贴实际的错误吗?
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?