1

使用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')
4

1 回答 1

1

请看看这个线程,看看它是否有帮助: http: //forum.evernote.com/phpbb/viewtopic.php?f=43 &t=17957

于 2011-07-01T13:43:23.297 回答