I wanna ask about getNote().
If I run these code without using getNote(), I can get 50 note's(findnote()'s limit) totally.
$listnote = $noteStore->listNotebooks($_SESSION['accessToken']);
$notebookone = $listnote;
$notebookguid = $notebookone->guid;
$filter = new NoteFilter();
$filter->notebookGuid = $notebookguid;
$offset = 0;
$result = array();
$notesList = $noteStore->findNotes($_SESSION['accessToken'], $filter, $offset, 100);
foreach ($notesList->notes as $note) {
echo $note->title . "<br />";
}
Now if I use getNote to print 50 notes, it just printing out only 10 to 20 notes(sometimes even print none of notes).
..............
foreach ($notesList->notes as $note) {
$fullNote = $noteStore->getNote($_SESSION['accessToken'], $note->guid, true, false, false, false);
echo $fullNote->title;
}
Why? Does getNote() have limit?
getNote() will print out the amount of unpredictable every single time.
I'm not sure what happen to geNote().
everybody knows? please.













