filter.setNotebookGuid(filterGUID); NoteList notes = authInfo.noteStore.findNotes(authInfo.accessToken, filter, 0, maxNotes);
The code below doesn't:
ArrayList<String> tagList = new ArrayList<String>(); tagList.add(t.getGuid()); filter.setTagGuids(tagList); NoteList notes = authInfo.noteStore.findNotes(authInfo.accessToken, filter, 0, maxNotes);
Exception:
EDAMSystemException(errorCode:SHARD_UNAVAILABLE, message:s202) at com.evernote.edam.notestore.NoteStore$findNotes_result.read(NoteStore.java:11762) at com.evernote.edam.notestore.NoteStore$Client.recv_findNotes(NoteStore.java:1153) at com.evernote.edam.notestore.NoteStore$Client.findNotes(NoteStore.java:1125)
or when using empty token
EDAMUserException(errorCode:PERMISSION_DENIED, parameter:authenticationToken) at com.evernote.edam.notestore.NoteStore$findNotes_result.read(NoteStore.java:11754) at com.evernote.edam.notestore.NoteStore$Client.recv_findNotes(NoteStore.java:1153) at com.evernote.edam.notestore.NoteStore$Client.findNotes(NoteStore.java:1125)
Any help would be highly appreciated ![]()












