Skip to content

NoteStoreClient.findNotes() does not find notes #28

@windsource

Description

@windsource

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions