| 8142 | } |
| 8143 | |
| 8144 | AuthenticationResult NoteStore::authenticateToSharedNotebook(QString shareKey, QString authenticationToken) |
| 8145 | { |
| 8146 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8147 | QByteArray params = NoteStore_authenticateToSharedNotebook_prepareParams(shareKey, authenticationToken); |
| 8148 | QByteArray reply = askEvernote(url_, params); |
| 8149 | return NoteStore_authenticateToSharedNotebook_readReply(reply); |
| 8150 | } |
| 8151 | |
| 8152 | AsyncResult* NoteStore::authenticateToSharedNotebookAsync(QString shareKey, QString authenticationToken) |
| 8153 | { |
no test coverage detected