Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OAuth 2.0 provider implementation for Scala/Lift

Does anyone know of a OAuth 2.0 provider (server side) implementation for Scala/Lift? I see Scala 2.0 client, but no provider.

like image 630
user312728 Avatar asked Apr 02 '11 22:04

user312728


1 Answers

It doesn't look like there is one readily available. So I think you have two options:

  1. Implement one yourself.
  2. Use a Java library in Scala. However this is probably not the optimal root due to the obvious impedance mismatch. But, I don't see much other choice. The project has both an OAuth client/server library and an example on how to use it.
like image 174
mistagrooves Avatar answered Oct 05 '22 23:10

mistagrooves