[ANN] Loudmoauth 0.1.1 - A single user multi provider oauth2 client library

2016-06-30 Thread Karl Blomström
Hello all! I wanted to share the 0.1.1 release of Loudmoauth, an oauth2 client library made for single user access to several oauth2 providers simultaneously. Good to have if you just want to consume an oauth2 API without too much hassle or for testing purposes. https://github.com/blmstrm

Re: Using OAuth2 to call one web app from another

2016-06-20 Thread jmckitrick
; >> Hi Jonathon! I am working on a client library for retrieving oauth2 >> tokens. Have a look here: https://github.com/blmstrm/loudmoauth and here >> for example usage: >> https://github.com/blmstrm/loudmoauth-examples/blob/master/src/loudmoauth_examples/core.clj >

Re: Using OAuth2 to call one web app from another

2016-06-20 Thread jmckitrick
Great! I'll give it a try! On Mon, Jun 20, 2016 at 8:51 PM Karl Blomström wrote: > Hi Jonathon! I am working on a client library for retrieving oauth2 > tokens. Have a look here: https://github.com/blmstrm/loudmoauth and here > for example usage: > https://github.com/blmstrm/lo

Re: Using OAuth2 to call one web app from another

2016-06-20 Thread Karl Blomström
Hi Jonathon! I am working on a client library for retrieving oauth2 tokens. Have a look here: https://github.com/blmstrm/loudmoauth and here for example usage: https://github.com/blmstrm/loudmoauth-examples/blob/master/src/loudmoauth_examples/core.clj The library is not polished yet but it seems

Re: Using OAuth2 to call one web app from another

2016-06-20 Thread Jonathon McKitrick
both use the :oauth-token parameter). > > > On Monday, June 20, 2016 at 4:30:32 PM UTC-7, Jonathon McKitrick wrote: >> >> I'm looking for the simplest way possible to get OAuth2 working so I can >> call an API which has recently switched from username/password to OAuth2

Re: Using OAuth2 to call one web app from another

2016-06-20 Thread Denis Laprise
You can pass the OAuth token in the request options if you're using httpkit or clj-http (both use the :oauth-token parameter). On Monday, June 20, 2016 at 4:30:32 PM UTC-7, Jonathon McKitrick wrote: > > I'm looking for the simplest way possible to get OAuth2 working so I ca

Using OAuth2 to call one web app from another

2016-06-20 Thread Jonathon McKitrick
I'm looking for the simplest way possible to get OAuth2 working so I can call an API which has recently switched from username/password to OAuth2. Any suggestions? Most of what I've found so far is server implemenation, rather than web app to web app. -- You received this message b

Present State Of OAuth2

2015-03-20 Thread JPatrick Davenport
Hello, I'm looking to provide OAuth2 around my services. The best I can tell is that https://github.com/pelle/clauth is state-of-the-art. It's not been actively touched for over a year. This could be do to its general awesomeness (don't fix it if it ain't borked). Is this an

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-16 Thread Sebastian Bensusan
That's great! Thanks! On Tuesday, December 16, 2014 2:27:53 PM UTC+1, JUAN ANTONIO Ruz wrote: > > Hola Sebastian, > Happy to know that you are interested on cylon too, I'll try to get a > oauth2 demo project configuration ready this afternoon > > Regards > Juan &g

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-16 Thread JUAN ANTONIO Ruz
Hola Sebastian, Happy to know that you are interested on cylon too, I'll try to get a oauth2 demo project configuration ready this afternoon Regards Juan El martes, 16 de diciembre de 2014 10:11:11 UTC, Sebastian Bensusan escribió: > > Hola Juan, > > I am using sutartsierra/c

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-16 Thread Sebastian Bensusan
mponent way offers > Oauth2 (client and provider). opensensors.io have been the first adopters > of this security cylon feature as you can find on the README. > I worked on the implementation so maybe I can help you on adopting OAuth2 > too > > Cheers > Juan > > El

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-16 Thread JUAN ANTONIO Ruz
Hi Sebastian, Are you using stuartsierra/component library? If you are, take a look at juxt/cylon <https://github.com/juxt/cylon> that in a component way offers Oauth2 (client and provider). opensensors.io have been the first adopters of this security cylon feature as you can find on the

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-15 Thread Sam Ritchie
Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com <mailto:clojure+unsubscr...@googlegroups.com>. For more options, visit https://groups.google.com/d/optout. Dave Della Costa <mailto:ddellac

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-15 Thread Sebastian Bensusan
Thanks Sam. The gist is very helpful (as well as the Friend + Liberator post). I see you are generating and maintaining your own tokens (" exchange for long-lived token"). Did you write custom code for this or is there some library I should look at? Sebastian -- You received this message

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-15 Thread Sam Ritchie
stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com <mailto:clojure+unsubscr...@googlegroups.com>. For more options, visit https://groups.google.com/d/optout. Dave Della Costa <mailto:ddellaco...@gmail.com> December 15, 2014 at 3:42 AM I'm a bit confu

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-15 Thread Sebastian Bensusan
add my own auth service around it. On Monday, December 15, 2014 11:42:36 AM UTC+1, David Della Costa wrote: > > I'm a bit confused--if you are building your own oauth2 server (correct > me if I misunderstood--you want users to use oauth2 to authenticate > against your own servic

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-15 Thread Dave Della Costa
I'm a bit confused--if you are building your own oauth2 server (correct me if I misunderstood--you want users to use oauth2 to authenticate against your own service?), what purpose does a Friend workflow have in this context? Seems like you could skip Friend altogether. DD (2014/12/15

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-15 Thread Sebastian Bensusan
Hi Dave, I am planning to use friend-oauth2 to handle "third party workflows". It is exactly what I need to consume third party oauth services, but from what I understood from the source code, it doesn't help me offer my own oauth service. I'm struggling with the design

Re: Implementing a Oauth2 provider with clauth and friend

2014-12-14 Thread Dave Della Costa
You could also take a look at friend-oauth2 if you are using it in the context of Friend--if it doesn't work for you for some reason I'd like to know why, as I'd like it to be able to handle this use-case. https://github.com/ddellacosta/friend-oauth2 Thanks! DD (2014/12/15 3

Implementing a Oauth2 provider with clauth and friend

2014-12-14 Thread Sebastian Bensusan
Hi, I am writing a Single Page Application using Om that communicates via XHR with a REST API using compojure + liberator. I should be able to authenticate users by using email & password credentials or third party Oauth2 like Linkedin's. I My plan is: use clauth [1] to roll my o

[ANN] friend-oauth2 0.1.1

2013-11-12 Thread Dave Della Costa
friend-oauth2 0.1.1 is out. https://github.com/ddellacosta/friend-oauth2 This is small fix release: Kevin Lynagh's credential-fn addition in there for real, this time. Thanks to Jérémie Campari (https://github.com/jeremieca) for testing it out and discovering this issue. DD (2013/11/07

[ANN] friend-oauth2 0.1.0

2013-11-07 Thread Dave Della Costa
Hi folks, friend-oauth2 0.1.0 is out. https://github.com/ddellacosta/friend-oauth2 Changes: - adds credential-fn for injecting your own functionality in the post-3rd-party-authentication stage. Thanks go to Kevin Lynagh (https://github.com/lynaghk) for this feature. - More refactoring of

Re: OAuth2

2013-07-16 Thread Chas Emerick
Hi Steven, I'm sorry to hear you didn't find Friend easy to use. FWIW, you (and whoever is following along) might find this helpful: https://friend-demo.herokuapp.com/ There are live examples of apps using OpenID, OAuth (via github), and more pedestrian stuff like forms and HTTP Basic

Re: OAuth2

2013-07-16 Thread Bastien
Hi all, Dave Della Costa writes: > Here are some more in-depth examples: > > https://github.com/ddellacosta/friend-oauth2-examples Thanks for this examples, very useful! I'm trying to finish integrating friend within a Luminus-based webapp project, but I'm stuck, I'

Re: OAuth2

2013-07-16 Thread Steven Degutis
I heard good things about friend , so I tried to use it for OpenID (to sign-in with Google). But I couldn't figure out how, so I just used openid4java . On Mon, Jul 15, 2013 at 8:57 PM, Plínio Balduino wrote: > Hi there

Re: OAuth2

2013-07-16 Thread Plínio Balduino
Thank you =) On Tue, Jul 16, 2013 at 6:47 AM, Dave Della Costa wrote: > Here are some more in-depth examples: > > https://github.com/ddellacosta/friend-oauth2-examples > > Please do use version 0.0.4 or above as anti-CSRF protection is > incorporated. I still owe Chas a pull

Re: OAuth2

2013-07-16 Thread Dave Della Costa
Here are some more in-depth examples: https://github.com/ddellacosta/friend-oauth2-examples Please do use version 0.0.4 or above as anti-CSRF protection is incorporated. I still owe Chas a pull request with an up to date version of friend-oauth2. Please note, it is in development, still rather

Re: OAuth2

2013-07-15 Thread Bastien
Hi Plínio, Plínio Balduino writes: > What are you using to authenticate with Google, Facebook, GitHub or > Twitter? I'm experimenting with "friend": https://github.com/cemerick/friend http://friend-demo.herokuapp.com/ HTH, -- Bastien -- -- You received this message because you are subsc

OAuth2

2013-07-15 Thread Plínio Balduino
Hi there What are you using to authenticate with Google, Facebook, GitHub or Twitter? Thanks Plínio -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members a

ANN: friend-oauth2 0.0.2

2012-10-24 Thread Dave Della Costa
Hi folks, for those with interest: friend-oauth2 is an oauth2 workflow for Chas Emerick's Friend library. https://github.com/ddellacosta/friend-oauth2 (Examples were also updated to conform to changes: https://github.com/ddellacosta/friend-oauth2-examples) Changelog 0.0.1 -> 0.0.2

Re: Clauth - OAuth2 provider for Ring

2012-04-27 Thread Pelle Braendgaard
gt;> > authentication provider for a Clojure Ring app. >> > >> > I am a relative Clojure novice, but have am very experienced in OAuth. >> > Please help give feedback on use of idiomatic clojure. >> > >> > It currently handles OAuth2 bearer

Re: Clauth - OAuth2 provider for Ring

2012-04-27 Thread Vijay Kiran
wrote: > > This is a simple OAuth 2 provider that is designed to be used as a > primary > > authentication provider for a Clojure Ring app. > > > > I am a relative Clojure novice, but have am very experienced in OAuth. > > Please help give feedback on use of id

Re: Clauth - OAuth2 provider for Ring

2012-04-27 Thread Michael Wood
On 27 April 2012 06:43, Shantanu Kumar wrote: > That sounds quite interesting! Do you have a Github URL of the project > to share? Looks like here: https://github.com/pelle/clauth > Shantanu > > On Apr 25, 12:29 am, Pelle Braendgaard wrote: >> This is a simple OAuth 2 provider that is designed

Re: Clauth - OAuth2 provider for Ring

2012-04-26 Thread Shantanu Kumar
tive Clojure novice, but have am very experienced in OAuth. > Please help give feedback on use of idiomatic clojure. > > It currently handles OAuth2 bearer authentication and interactive > authentication. > > By interactive authentication I mean, it can be used for primary end user

[ANN] Clauth - OAuth2 provider for Ring

2012-04-26 Thread Pelle Braendgaard
This is a simple OAuth 2 provider that is designed to be used as a primary authentication provider for a Clojure Ring app. I am a relative Clojure novice, but have am very experienced in OAuth. Please help give feedback on use of idiomatic clojure. It currently handles OAuth2 bearer