【问题标题】:How to Access A Note's Content如何访问笔记的内容
【发布时间】:2018-03-21 03:26:33
【问题描述】:

我想将笔记本中的所有笔记保存为纯文本文件。我正在尝试使用 note_content = note_store.getNoteContent(developer_token,first_notebook.guid)

访问笔记的内容

但我收到以下错误: evernote.edam.error.ttypes.EDAMNotFoundException: EDAMNotFoundException(identifier='Note.guid', key='e49967e8-3247-4560-8ce5-40577cc2166f')

但我知道 guid 是有效的,因为 first_notebook.guid 提供了 e49967e8-3247-4560-8ce5-40577cc2166f

我做错了什么?

【问题讨论】:

    标签: evernote


    【解决方案1】:

    getNoteContent 检索单个笔记,因此它需要 note 的 GUID,而不是 笔记本

    有关如何查找或同步笔记的更多信息,请参阅 How can I specify ALL guids for getNoteWithResultSpec()?

    【讨论】: