public function getNotesForNotebook(bookId : String) : void
{
var filter : NoteFilter = new NoteFilter();
filter.notebookGuid = bookId;
var resultSpecification : NotesMetadataResultSpec = new NotesMetadataResultSpec();
resultSpecification.includeTitle = true;
noteStore.findNotes(sessionId, filter, 0, Constants.MAX_NOTES, errorHandler, notesHandler);
function notesHandler(result : Object) : void
{
dispatchEvent(new ServiceDataEvent(ServiceDataEvent.NOTES, result.success));
}
function errorHandler(info : Object) : void
{
dispatchEvent(new ErrorEvent(ErrorEvent.ERROR, false, false, info.toString()));
}
}
"info" com.evernote.edam.error.EDAMUserException (@c1d5fe1)
errorCode 3
_errorCode 3
__isset_errorCode true
parameter "authenticationToken"
_parameter "authenticationToken"












