问题标签 [gdata-python-client]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 哪个是在 python 中与谷歌电子表格交互的正确 api?
我找到了两种不同的 API 来与谷歌电子表格进行交互,但不知道我应该使用哪一种。我找到了这两个: 1. google-api-python-client: http://github.com/google/google-api-python-client 2. gdata-python-client: https://code.google.com/ p/gdata-python-客户端/
我认为第一个是正确的,但我找不到获取电子表格内容的方法。
“正确”是指“能够上传新电子表格并修改或删除现有电子表格”。谢谢你的帮助。
python - 如何将电子邮件审核 API 与 gdata python 客户端库一起使用?
当我使用 gdata-python-client 库https://github.com/google/gdata-python-client/blob/master/samples/apps/email_audit_email_monitoring.py时,我一开始就遇到了错误。
它总是说
我使用了在 Google 开发者控制台中应用的客户端 ID 和客户端密码,但它不起作用。那么哪个密钥和秘密会起作用?
python - AttributeError:“DocsClient”对象没有属性“GetDocumentListFeed”
我目前正在尝试构建一个与 Google API 交互的脚本,但我不断收到属性错误:
这是我正在尝试使用的代码
我已经从这里的示例代码中提取了 client.getDocumentListFeed() 部分代码,甚至在此处的 2LeggedOAuth 部分下使用他们的示例代码尝试了最低限度的方法。(我也尝试过该示例中的 GetDocList() 并出现相同的错误)
我已将 Google 的 gdata-python-client 下载到 linux vm 的主目录,并通过运行安装它python setup.py install
并运行测试 python all_tests.py
,没有错误。
任何帮助将不胜感激
python - gdata-python-client 是否允许具有多个术语的全文查询?
我正在尝试使用多个搜索词通过 Google Contacts API 搜索联系人。按单个术语搜索可以正常工作并返回联系人:
但是,我想按多个字词搜索:
当我这样做时,不会返回任何结果,并且到目前为止我发现空格正在被 + 符号替换:
我现在正在挖掘 gdata-client-python 代码以找到它在哪里构建查询字符串,但也想把问题抛到那里去。
根据文档,API 支持这两种类型的搜索,在搜索相关 API(文档、日历等)时,我看到了一些类似的文档:
https://developers.google.com/google-apps/contacts/v3/reference#contacts-query-parameters-reference
谢谢!
python - Python:Google Contacts API 仅检索 3 个联系人
我是 Python 和 Google API 的新手。
我有来自https://developers.google.com/google-apps/contacts/v3/?hl=en的以下代码:
这仅从 c 中返回 3 个联系人。850.任何想法,有人吗?
python - 使用 gdata-python-client 和 OAuth2 令牌从 Google Contacts API 检索所有(其他)联系人?
在寻找列出Other
Gmail/GSuite 用户的所有(包括)联系人的过程中。当前People API
不支持此功能,请注意以下线程:
- 在此处找到此线程,确认 API 中的此类更改:Google Contacts API vs People API
- 谷歌团队在这里注意到它:https ://groups.google.com/forum/#!topic/google-contacts-api/iLsrN23xF6g
- 在此处参考优先级票证请求:https ://issuetracker.google.com/issues/36757468
深入研究时,联系人 API 似乎仍在运行,可以通过gdata
https://developers.google.com/contacts/v3/使用
但是,基于以下 repo ( https://github.com/google/gdata-python-clientuserID
),关于使用 OAuth2 ( , token
, )实现的文档有限refreshToken
,这是获取列表的当前绊脚石Other Contacts
任何帮助将不胜感激,谢谢!