Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 791 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 791 Bytes

clj-social

A Clojure library to make social easy, for now support facebook and twitter.

Latest version

Clojars Project

Usage

Facebook Example

(require '[clj-social.core :refer [make-social]])

;; scope default to nil, state default to UUID
(def fb (make-social :facebook app-key app-secret callback-uri :state state :scope "email"))

;; get authorization url, then open it to get the callback code
(def url (.getAuthorizationUrl fb))

;; get access-token
(def access-token (.getAccessToken fb code))

;; get user info
(def user (.getUserInfo fb access-token))

License

Copyright © 2019 [email protected]

Distributed under the Eclipse Public License version 1.0.