java Gmail 任务 API 存在吗?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1485822/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-29 16:43:06  来源:igfitidea点击:

Gmail Task API exist?

javaapigmailgdata-api

提问by developer.cyrus

Inside Gmail, there is a small function called "Task". It can allow me to enter a to-do-list. I'm wondering if there is any official / unofficial Google API to access / update the list by Java language?

在 Gmail 内部,有一个名为“任务”的小功能。它可以让我输入待办事项列表。我想知道是否有任何官方/非官方的 Google API 可以通过 Java 语言访问/更新列表?

采纳答案by BrianH

The official Google Task API has been released in May 2011 (Well, it's in Labs, but it is official)

官方的 Google Task API 已于 2011 年 5 月发布(嗯,它在实验室中,但它是官方的)

https://developers.google.com/google-apps/tasks/

https://developers.google.com/google-apps/tasks/

Here are the Java specific libraries:

以下是 Java 特定的库:

https://developers.google.com/api-client-library/java/

https://developers.google.com/api-client-library/java/

回答by Krishna Gopalakrishnan

The official Google Tasks API doesn't exist as of now. There is a feature request open at http://code.google.com/p/gdata-issues/issues/detail?id=987.

官方的 Google Tasks API 目前还不存在。在http://code.google.com/p/gdata-issues/issues/detail?id=987 上打开了一个功能请求。

回答by Brian Burns

If you sort the Google API issues by number of stars, this feature is overwhelmingly at the top of the list. There must be some political reason why they're not providing an API - this has been on the tracker for nearly 2 years now (added Jan 18, 2009).

如果您按星数对 Google API 问题进行排序,则此功能绝对位于列表顶部。他们不提供 API 肯定有一些原因——这已经在跟踪器上出现了将近 2 年(2009 年 1 月 18 日添加)。

Type         Priority Stars  Summary
Enhancement  Medium   4810   Request API for Tasks (in the Google Mail Interface)    
Enhancement  Low      158    structured fields wanted for postal addresses   
Enhancement  Medium   133    embed several private calendars in one iframe   
Defect       High     100    Lack of Individual Name Fields Causes Synchronization Problems with Mobile Devices      
Enhancement  ----     77     Upload arbitrary file types to standard accounts 

http://code.google.com/a/google.com/p/apps-api-issues/issues/detail?id=985&sort=-stars%20priority&colspec=API%20ID%20Type%20Status%20Priority%20Stars%20Summary

http://code.google.com/a/google.com/p/apps-api-issues/issues/detail?id=985&sort=-stars%20priority&colspec=API%20ID%20Type%20Status%20Priority%20Stars%20Summary

回答by FPC

Update - it seems as if it is on their task list for 2011, see this post from 13 January 2011:

更新 - 似乎它在他们 2011 年的任务列表中,请参阅 2011 年 1 月 13 日的帖子:

http://gmailblog.blogspot.com/2011/01/top-tasks-for-google-tasks.html

http://gmailblog.blogspot.com/2011/01/top-tasks-for-google-tasks.html

回答by MRG

Its a perl module. Check it if it can help you.

它是一个 perl 模块。检查它是否可以帮助您。

nickspacek / Net-Google-Tasks

nickspacek / 网络谷歌任务

回答by Nickolay Olshevsky