с 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')