We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was able to get the oauth token and was able to get
var userStore = client.getUserStore(); userStore.getUser().then(function(user) { console.log("username",user) // user is the returned User object });
and
noteStore.listNotebooks().then(function(notebooks) { console.log("notebooks",notebooks); // the user's notebooks! });
to work without issue. However, when I used this:
//get notes var filter = new Evernote.NoteStore.NoteFilter({ words: ['one', 'two', 'three'], ascending: true }); var spec = new Evernote.NoteStore.NotesMetadataResultSpec({ includeTitle: true, includeContentLength: true, }); console.log("filter",filter) console.log("spec",spec) console.log("got here") noteStore.findNotesMetadata(filter, 0, 500, spec).then(function(notesMetadataList) { console.log("notes",notesMetadataList) // data.notes is the list of matching notes });
I get the error: The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type object
The text was updated successfully, but these errors were encountered:
This seems to be same issue to #83 .
Sorry, something went wrong.
No branches or pull requests
I was able to get the oauth token and was able to get
and
to work without issue. However, when I used this:
I get the error: The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type object
The text was updated successfully, but these errors were encountered: