Skip to content
Emanuele D'Osualdo edited this page May 5, 2014 · 9 revisions

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

IMPORTANT: authentication

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.

A note for Chinese users (yinxiang.com)

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:

  1. Goto https://app.yinxiang.com/api/DeveloperToken.action, login if prompted
  2. 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
  1. In Sublime Text go to Preferences > Package Settings > Evernote > Settings - User
  2. In the settings file you will find two keys (if not create them):
  • token
  • noteStoreUrl
  1. Copy your developer key as the value of the token setting:

     "token": "S=.............................",
    
  2. Copy your note store URL into the noteStoreUrl setting replacing https:// with http://:

     "noteStoreUrl": "http://app.yinxiang.com/shard..../notestore",
    
  3. Save the settings file and try to open a note to verify the process has been successful

Clone this wiki locally