I checked the source code of the joplin server, i found there is folder api which will provides http request calls.
Therefore i try to use
'''
curl -X POST --data '{"email": "xxx", "password": "yourpass"}' http://:22300/login
'''
This could successfully login and return a session id with cookie
You could set the cookie for the next request, however i donot know what others i could use
I tried other end points in api/items, nothing is working, only if i use
curl -X GET http://:22300/api/items/1/delta, the server will give me some dity data.
Does anyboday know how to access the data correctly with server API?