An open API service indexing awesome lists of open source software.

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*

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/