I prefered to use the sharekit for the social integration to my iphone app. While configuring the evernote integration when i tested with the default credentails its worked but when I used my own credentails it doesn't work. The alert says the "your username and password did not match" for same credentails used before.
The Default code(working) was
- (NSString*)evernoteUserStoreURL {
return @"https://sandbox.evernote.com/edam/user";
}
- (NSString*)evernoteNetStoreURLBase {
return @"http://sandbox.evernote.com/edam/note/";
}
- (NSString*)evernoteConsumerKey {
return @"<shareKit's key>";
}
- (NSString*)evernoteSecret {
return @"<shareKit's secret>";
}
i just changed the key and secret with mine. Nothing else at all. and its not working my code is
- (NSString*)evernoteUserStoreURL {
return @"https://sandbox.evernote.com/edam/user";
}
- (NSString*)evernoteNetStoreURLBase {
return @"http://sandbox.evernote.com/edam/note/";
}
- (NSString*)evernoteConsumerKey {
return @"<mykey>"; // replaced by my key
}
- (NSString*)evernoteSecret {
return @"<mysecret>"; // replaced by my secret
}
Its all about sandbox.evernote.com. On evernote.com, none of the above is working. Please suggest me what else to configure?