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 に答える