从 Sandbox 获取 Evernote 标签时遇到问题
Trouble with getting Evernote tags from Sandbox
方法"noteStore.listTags" return所有标签,包括从 Evernote 沙盒帐户中删除的标签。但在 API 参考中说:"only include active tags"。环境:Java, evernote-api 1.25.1.
1) 在我的例子中,我只需要 return 活动标签。可以修复吗?
2) 此问题仅发生在沙盒中还是高级帐户中也会发生?我没有高级帐户,所以无法查看。
环境:Java,evernote-api 1.25.1。
您所说的标签实际上并未删除。在网络 UI 的标签抽屉中,我们隐藏了所有未附加到任何笔记的标签,因此尽管如果需要,它们会由 NoteStore.listTags, they aren't shown. We use NoteStore.findNoteCounts to figure out how many notes each tag is attached to. There is currently no way using the web UI to delete tags - you can do that via NoteStore.expungeTag 返回。
方法"noteStore.listTags" return所有标签,包括从 Evernote 沙盒帐户中删除的标签。但在 API 参考中说:"only include active tags"。环境:Java, evernote-api 1.25.1.
1) 在我的例子中,我只需要 return 活动标签。可以修复吗?
2) 此问题仅发生在沙盒中还是高级帐户中也会发生?我没有高级帐户,所以无法查看。
环境:Java,evernote-api 1.25.1。
您所说的标签实际上并未删除。在网络 UI 的标签抽屉中,我们隐藏了所有未附加到任何笔记的标签,因此尽管如果需要,它们会由 NoteStore.listTags, they aren't shown. We use NoteStore.findNoteCounts to figure out how many notes each tag is attached to. There is currently no way using the web UI to delete tags - you can do that via NoteStore.expungeTag 返回。