https://github.com/vindarel/cliaspora
Lisp bindings to diaspora*
https://github.com/vindarel/cliaspora
Last synced: 5 months ago
JSON representation
Lisp bindings to diaspora*
- Host: GitHub
- URL: https://github.com/vindarel/cliaspora
- Owner: vindarel
- Created: 2018-04-27T16:55:31.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-17T23:03:00.000Z (almost 8 years ago)
- Last Synced: 2025-02-12T04:17:23.710Z (over 1 year ago)
- Language: Common Lisp
- Homepage: https://gitlab.com/vindarel/cliaspora
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* Cliaspora - Lisp bindings to the Diaspora social network
: ¡ in development, don't look !
Diaspora doesn't have a proper API yet.
We need to get a random page, extract its csrf token from it, login,
handle cookies and then use json endpoints:
- stream.json
- activity.json
- notifications.json
- more ?
** Use
#+BEGIN_SRC lisp
;; you can put those in ~/.sbclrc
(in-package :cliaspora)
(setf *username* "name")
(setf *password* "pwd")
(setf *pod* "http://...org")
(login)
(get-stream)
(stream-titles)
(show-stream)
#+END_SRC
** Resources
https://lispcookbook.github.io/cl-cookbook/
https://github.com/CodyReichert/awesome-cl
https://lisp-journey.gitlab.io/blog/these-months-in-common-lisp-q1-2018/