FAQ
Show error message Joplin's token/port is set incorrectly, unable to access Joplin service!
Please try to execute the following command in CMD/Bash, if there is no problem, it should return JoplinClipperServer, otherwise you need File an issue with Joplin.
curl http://127.0.0.1:41184/ping
On Linux make sure your /etc/hosts
contains the following entry
127.0.0.1 localhost
Not opened in VSCode after clicking
Please refer to the official default external editor settings: How can I edit my note in an external text editor?open in new window
How to list joplin notes opened by VSCode
Although there is no official support, you can use the shortcut key c+j c+o
to list the last modified 20 joplin notes to do similar things.
No list displayed in the sidebar
After checking joplin configuration items, restart VSCode.
Clicking on the sidebar fails to open the note
There may be multiple reasons for this problem
Check if you can open vscode through the switch external editing function in joplin
- If it can't be opened, you need to check the text editor command in the settings page, you need to set an editor, or there are invalid settings, refer to: https://github.com/laurent22/joplin/issues/5921#issuecomment-1002692774open in new window
- If you still have problems, please go to the official joplin project file an issueopen in new window
Please use version v1.4 or higher, because it contains the necessary action apiopen in new window, for example, open notes based on noteId in VSCode
Make sure to install the Joplin desktop version on the current computer. The plug-in does not support CLI, because it does not include the above action api, refer to: https://discourse.joplinapp.org/t/16735open in new window
Check whether the following command can be executed normally, if it still cannot be opened in the editor, you may want to ask @laurent22
curl --location --request POST'http://localhost:41184/services/externalEditWatcher?token=***' \ --header'Content-Type: application/json' \ --data-raw'{ "action": "openAndWatch", "noteId": "257f6a9dacc1409580ee526d50ac4d49" }'
1
2
3
4
5
6
Windows 10 cannot upload a cut version of the picture
Powershell may not be installed, enter powershell in CMD to check
powershell
If you are prompted to spawn powershell ENOENT
, you need to install powershell, refer to: Install PowerShell on Windowsopen in new window
How to use plugins in two synchronized vscode configurations
By default, joplin on each computer will generate a random token, but you can modify it manually. The general configuration file is ~/.config/joplin-desktop/settings.json, you only need to modify the api. The token
is the same token.
Reference: https://github.com/rxliuli/joplin-utils/issues/25open in new window