使用适用于iOS的Evernote API,我可以毫无问题地创建笔记本和新笔记。但是,一旦我尝试获取某个笔记本中的笔记列表(我知道guid),我就会收到此错误:
2012-08-23 22:15:09.734 Meernotes[9900:c07] FN error: Error Domain=com.evernote.sdk Code=3 "The operation couldn’t be completed. (com.evernote.sdk error 3.)" UserInfo=0xa554c80 {parameter=authenticationToken}
因此看起来好像我遇到了authenticationToken问题。为了创建笔记本或笔记,我也需要进行身份验证,所以我不明白为什么在笔记本中列出笔记时我没有通过身份验证。这是我正在调用的代码:
EDAMNoteFilter *filter = [[EDAMNoteFilter alloc] initWithOrder:1 ascending:FALSE words:nil notebookGuid:guid tagGuids:nil timeZone:nil inactive:NO];
EvernoteNoteStore *noteStore = [EvernoteNoteStore noteStore];
[noteStore findNotesWithFilter:filter offset:0 maxNotes:[EDAMLimitsConstants EDAM_USER_NOTES_MAX] success:^(EDAMNoteList *list) {
//
NSLog(@"all notes in notebook: %@", list.notes);
} failure:^(NSError *error) {
//
NSLog(@"FN error: %@", error);
}];
答案 0 :(得分:4)
好的,我刚刚找到了答案:我无法在使用API Basic Access的笔记本中列出笔记。我再次注册了一个“完全访问”。此外,我必须在沙箱环境中注册一个新的测试用户,并在我的应用程序中注册该用户,以便我的应用程序完全访问沙箱用户的注释。现在一切都很好!