print mastodon statuses via mastodon-api interop
This commit is contained in:
parent
c0431f5bae
commit
ed817a328d
3 changed files with 2421 additions and 7 deletions
2398
package-lock.json
generated
Normal file
2398
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -5,5 +5,7 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"shadow-cljs": "2.8.100"
|
"shadow-cljs": "2.8.100"
|
||||||
},
|
},
|
||||||
"dependencies": {}
|
"dependencies": {
|
||||||
|
"mastodon-api": "^1.3.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,21 @@
|
||||||
(ns dda.masto-embed.app)
|
(ns dda.masto-embed.app
|
||||||
|
(:require ["mastodon-api" :as Mastodon]
|
||||||
|
[clojure.pprint :as pprint :refer [pprint]]
|
||||||
|
[cljs.core.async :refer [go]]
|
||||||
|
[cljs.core.async.interop :refer-macros [<p!]]))
|
||||||
|
|
||||||
(defn init
|
(defn get-content-seq [response]
|
||||||
""
|
(map
|
||||||
[]
|
#(aget % "content")
|
||||||
(println "xx")
|
(array-seq
|
||||||
"Hello world!")
|
(aget response "data"))))
|
||||||
|
|
||||||
|
(defn init []
|
||||||
|
(let [config (js-obj "api_url" "https://social.meissa-gmbh.de/api/v1/" "access_token" "...")
|
||||||
|
masto (new Mastodon config)
|
||||||
|
rest-endpoint "accounts/:id/statuses"
|
||||||
|
id-config (js-obj "id" "2")]
|
||||||
|
(pprint
|
||||||
|
(go
|
||||||
|
(let [response (<p! (.get masto rest-endpoint id-config))]
|
||||||
|
(get-content-seq response)))))
|
||||||
|
|
Loading…
Reference in a new issue