Coder Social home page Coder Social logo

Comments (4)

conch avatar conch commented on August 16, 2024 1

NoteStore.findNotes is deprecated. Please use NoteStore.findNotesMetadata. This function will return a NotesMetadataList, which has a "notes" attribute. That attribute is a list of NoteMetadata. Each NoteMetadata represents one note, but it is not a Note (just the metadata for that note), so it will not have the content. However, it does have the "guid" attribute, which you plug into NoteStore.getNote to get the content of the Note. NoteStore.getNote accepts six parameters (auth token, note guid, and four booleans). Make sure to set the first boolean to true because it is the flag for including the "content" of the Note.

from evernote-sdk-js.

conch avatar conch commented on August 16, 2024

Which function are you calling?

from evernote-sdk-js.

mjpearson avatar mjpearson commented on August 16, 2024

Something like :

 var store = this.getNoteStore(sysImports),
    filter = new EVClient.NoteFilter();

  filter.notebookGuid = notebookGUID;

  store.findNotes(filter, page || 0, limit || 100, next);

addendum : This is against sandbox

from evernote-sdk-js.

mjpearson avatar mjpearson commented on August 16, 2024

Works perfectly, thanks a lot for the help

from evernote-sdk-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.