You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am saving my notes into oracle database. I have a valid production activated secret key and value.
I logged in using them form my system and I revoked it from my web base ever-note account in Applications section.
Now I am not able to login from only my system and able is login from other systems. Basically on first login it will ask for permission by showing a popup. But in my system it is not showing it and throwing the following error.
Evernote.EDAM.Error.EDAMUserException: 'Exception of type 'Evernote.EDAM.Error.EDAMUserException' was thrown.'
Error code: AUTH_ERROR
Code being use:
// Be sure to put your own consumer key and consumer secret here.
ENSession.SetSharedSessionConsumerKey("key", "value");
if (ENSession.SharedSession.IsAuthenticated == false)
{
ENSession.SharedSession.AuthenticateToEvernote();
}
List<ENNotebook> myNotebookList = ENSession.SharedSession.ListNotebooks();
Here ENSession.SharedSession.IsAuthenticated is true but will throw error as mentioned above when I try to fetch notebooks.
I don't see any function in library that can be used to re-authenticate.
If there is any way to re-authenticate?
Below URL says there is a way to do it. But it doesn't help in any way because they didn't mention how to do it.
I am saving my notes into oracle database. I have a valid production activated secret key and value.
I logged in using them form my system and I revoked it from my web base ever-note account in Applications section.
Now I am not able to login from only my system and able is login from other systems. Basically on first login it will ask for permission by showing a popup. But in my system it is not showing it and throwing the following error.
Code being use:
Here ENSession.SharedSession.IsAuthenticated is true but will throw error as mentioned above when I try to fetch notebooks.
I don't see any function in library that can be used to re-authenticate.
If there is any way to re-authenticate?
Below URL says there is a way to do it. But it doesn't help in any way because they didn't mention how to do it.
https://dev.evernote.com/doc/articles/revoked_expired_auth.php
The text was updated successfully, but these errors were encountered: