Ubuntu One 有 API 吗?

Ubuntu One 有 API 吗?

Ubuntu One 有 API 集吗?例如,同步联系人、书签等的 API。

答案1

持久存储某些内容并将其与 Ubuntu One 同步的常用方法是使用 Desktopcouch。以下是示例:

from desktopcouch.records.server import CouchDatabase
from desktopcouch.records.record import Record

database = CouchDatabase("askubuntu_test", create=True)

record = Record(
    {"site": "askubuntu.com", "awesome": True}, "http://example.com")

database.put_record(record)

其中“example.com”理想情况下应该指向您的记录格式的描述。

然后检索信息:

database = CouchDatabase("askubuntu_test")

for i in database.get_records(create_view=True):
    print i

Desktopcouch 的 API 非常简单,请查看Desktopcouch 文档了解更多信息。

答案2

@Stefano 说过。另外,目前还没有一个地方可以让你了解与 Ubuntu One 相关的所有不同 API,但我们正在为 Natty 及时构建它。

答案3

是的..尝试看看这个:https://one.ubuntu.com/developer/

相关内容