I have a problem writing a note in a notebook with the iOS Evernote SDK .
I tried just to get a note in the question
EvernoteNoteStore* noteStore = [EvernoteNoteStore noteStoreForLinkedNotebook:self.linkedNotebook];
Then I tried to create a note with
[noteStore createNote:note success:success failure:^(NSError *error) { NSLog(@"%@", error); }];
It always ends with a mistake saying that I do not have permission to create a note.
I also tried to authenticate using the shared key in my linked notebook, but it was also stopped there with the same error in the bounce block.
[noteStore authenticateToSharedNotebookWithShareKey:self.linkedNotebook.shareKey success:^(EDAMAuthenticationResult *result) { [noteStore createNote:note success:success failure:^(NSError *error) { NSLog(@"%@", error); }]; } failure:^(NSError *error) { NSLog(@"%@", error); }];
How can I solve the problem of creating a note in a linked laptop?
ios objective-c evernote
Moriya
source share