使用Evernote python API,
我可以看到共享笔记本
notebooks = noteStore.listLinkedNotebooks(authToken)
print "Found ", len(notebooks), " notebooks:"
for notebook in notebooks:
print " * ", notebook,notebook.guid
但是,如果我尝试阅读笔记本中的笔记
notebooks = noteStore.listLinkedNotebooks(authToken)
print "Found ", len(notebooks), " notebooks:"
for notebook in notebooks:
print " * ", notebook,notebook.guid
filter = NoteStore.NoteFilter()
filter.notebookGuid = notebook.guid
noteList = noteStore.findNotes(authToken,filter,0,10)
#print noteList
for n in noteList.notes:
print n.title, n.guid
我得到这个错误
evernote.edam.error.ttypes.EDAMNotFoundException:
EDAMNotFoundException(identifier='Notebook.guid', key='x-y-z')
最佳答案
请查看此线程,看看是否有帮助:http://forum.evernote.com/phpbb/viewtopic.php?f=43&t=17957
关于python - evernote api:listLinkedNotebooks中的注释,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6464086/