Sublimean安装evernote遇到Evernote error: [Invalid auth]

Evernote error: [Invalid auth]
authenticationToken
Last command: left_delete {}
BEFORE SUBMITTING AN ISSUE (https://github.com/bordaigorl/sublime-evernote/issues):
1. Enable the debug setting in your Evernote.sublime-settings file and try again. If the problem persists take a note of the output in the console.
Make sure you delete personal information (e.g. Developer Token) from the output before posting it in an issue.
2. Check the wiki at https://github.com/bordaigorl/sublime-evernote/wiki
3. Search for similar issues at https://github.com/bordaigorl/sublime-evernote/issues?q=is%3Aissue
(Evernote plugin v2.7.2, ST 3126, Python 3.3.6, windows x64)
error: Evernote cannot perform the requested action:
Authorisation error, consider re-configuring the plugin

解决方法
View->Show Console菜单打开命令行,粘贴如下代码:

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

你可能感兴趣的:(Sublimean安装evernote遇到Evernote error: [Invalid auth])