设置“发布到网络"在 Google 电子表格中使用 Drive python API

Set quot;publish to webquot; in Google spreadsheet using Drive python API(设置“发布到网络在 Google 电子表格中使用 Drive python API)
本文介绍了设置“发布到网络"在 Google 电子表格中使用 Drive python API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试使用 Python 版本的 Google Drive API 在 Google 文档中模拟单击发布到网络"->立即开始发布".根据我对文档的模糊理解,我相信这应该可行:

I'm trying to simulate clicking "publish to web" -> "start publishing now" in Google docs using the Python version of the Google Drive API. Based on my vague understanding of the documentation, I believe this should work:

service.revisions().update(fileId = newfile['id'],
    revisionId='head', body={'published':True, 'publishAuto': True})

但是,这似乎对我的文档没有影响.

However, this appears to have no effect on my document.

我希望能够以编程方式创建一个可供全世界立即访问的 Google 电子表格.

I'd like to be able to programmatically create a Google spreadsheet that is immediately world-accessible.

推荐答案

原来上面代码片段返回的响应对象需要调用execute():

Turns out the response object that's returned by the code snippet above needs to call execute():

service.revisions().update(fileId = newfile['id'], revisionId='head',
    body={'published':True, 'publishAuto': True}).execute()

这会返回一个修订对象并设置文档的发布属性.

This returns a revision object and sets the publish properties on the document.

这篇关于设置“发布到网络"在 Google 电子表格中使用 Drive python API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python arbitrarily incrementing an iterator inside a loop(python在循环内任意递增迭代器)
Joining a set of ordered-integer yielding Python iterators(加入一组产生 Python 迭代器的有序整数)
Iterating over dictionary items(), values(), keys() in Python 3(在 Python 3 中迭代字典 items()、values()、keys())
What is the Perl version of a Python iterator?(Python 迭代器的 Perl 版本是什么?)
How to create a generator/iterator with the Python C API?(如何使用 Python C API 创建生成器/迭代器?)
Python generator behaviour(Python 生成器行为)