-
Notifications
You must be signed in to change notification settings - Fork 104
First Use
When you first run this package from the command palette, it will launch a browser window with your Evernote developer token. Copy the token and paste it into the prompt at the bottom of your Sublime window. Sublime will store the token data in Sublime Text 3/Packages/User/SublimeEvernote.sublime-settings
.
If you need to reconfigure the plugin go to Preferences > Package Settings > Evernote
and select Reconfigure Authorisation
or goto
Command Palette
> Evernote: Reconfigure
The authentication method makes use of the Developer Token which is a unique secret automatically generated "password" linked to your account and grants read-write access to your Evernote.
This token will be saved in your user settings in the Evernote.sublime-settings
: it is therefore important that you keep that file secret or others may get access to your notes. So make sure you do not share this publicly!
If you want to revoke access to your notes via the Developer Token, or generate a new one (for example if you accidentally shared yours) just go to
https://www.evernote.com/AuthorizedServices.action
and revoke access to it first and grant access back to the plugin using the "Reconfigure Evernote" command in Sublime Text.
The configuration step is meant to work for users registered at the domain evernote.com
.
The plugin is however perfectly compatible with the Chinese domain for Evernote, yinxiang.com
.
Here's how to configure it for yinxiang.com
:
- Goto https://app.yinxiang.com/api/DeveloperToken.action, login if prompted
- You will get two pieces of information from that page:
- your Developer Key Token: a long string starting with
S=
- the NoteStore URL: an URL starting with
https://app.yinxiang.com/shard
- In Sublime Text go to
Preferences > Package Settings > Evernote > Settings - User
- In the settings file you will find two keys (if not create them):
token
noteStoreUrl
-
Copy your developer key as the value of the
token
setting:"token": "S=.............................",
-
Copy your note store URL into the
noteStoreUrl
setting replacinghttps://
withhttp://
:"noteStoreUrl": "http://app.yinxiang.com/shard..../notestore",
-
Save the settings file and try to open a note to verify the process has been successful