I am using the Evernote Java SDK with the sandbox account to create a note and search for it.
Note mynote = new Note();
mynote.setTitle("mytitle");
mynote.setContent(content);
Note createdNote = noteStore.createNote(mynote);
NoteFilter filter = new NoteFilter();
String query = "mytitle";
filter.setWords(query);
NoteList notelist = noteStore.findNotes(filter, 0, 10);
The creation of the note works fine but unfortunately findNotes() just returns an empty list. The same code worked some months ago but now it doesn't anymore.
I am using the Evernote Java SDK with the sandbox account to create a note and search for it.
The creation of the note works fine but unfortunately
findNotes()just returns an empty list. The same code worked some months ago but now it doesn't anymore.