oauthentic icon indicating copy to clipboard operation
oauthentic copied to clipboard

Simple OAuth 2 client library for Clojure

Results 5 oauthentic issues
Sort by recently updated
recently updated
newest added

I can only add one scope at the time: ``` (build-authorization-url {...} { .... :scope SCOPE}) ``` Is there a way to add multiple scopes?

Hi...I'm having a little problem trying use oauth with google...the build-authorization-url process works perfect, I login and get the code...but when I wish get the token I get ``` clojure...

Update the token retrieval process for compatibility with the released OAuth2 specification (RFC6749) http://tools.ietf.org/html/rfc6749 Includes full tests, and has been tested with Github, and other OAuth providers. Should also work...

Allow for insecure SSL connections, such as self-signed certs, by passing :insecure? true when making token request. Example: ``` clojure (fetch-token {:token-url "https://myselfsignedserver.com/oauth/token" :client-id (get (System/getenv) "CLIENT_ID") :client-secret (get (System/getenv)...

Hi, I am having some problem getting the token, I may doing something wrong, but I don't know what... ``` clojure (defn get-token [code] (fetch-token "https://graph.facebook.com/oauth/access_token" {:client-id "399193563484931" :client-secret "SEGRET"...