[Lift] Re: So where is that OAuth?

2009-06-24 Thread jon
I've been working on the provider side of oauth to authenticate api calls. I was looking at the http-authentication example, but I'm not sure if want to go that route. I would like to be able to specify authentication for paths in the same place that I define them (in a DispatchPF). I'd also

[Lift] Re: So where is that OAuth?

2009-06-22 Thread DFectuoso
Well i went ahead and learn a lot from the lift-openId implementation and understand what I would need to do have lift-OAuth working It seems like i could do two things: 1) Get a OAuth java library that allows me to post, get, login and logout then create a OAuth.scala file where i create a

[Lift] Re: So where is that OAuth?

2009-06-22 Thread marius d.
On Jun 22, 3:25 am, DFectuoso santiago1...@gmail.com wrote: Well i went ahead and learn a lot from the lift-openId implementation and understand what I would need to do have lift-OAuth working It seems like i could do two things: 1) Get a OAuth java library that allows me to post, get,

[Lift] Re: So where is that OAuth?

2009-06-22 Thread Timothy Perrett
I'm using the apache http client in lift-paypal and have been contemplating extracring some of the util methods / factories into the lift-util package of lift so if your going to make something for OAuth go for http client for sure as it's already in use within the lift eco- system.

[Lift] Re: So where is that OAuth?

2009-06-22 Thread DFectuoso
Well i will start working on that tonight(after work of course) and keep you guys updated! Cheers! On Jun 22, 8:59 am, marius d. marius.dan...@gmail.com wrote: On Jun 22, 3:25 am, DFectuoso santiago1...@gmail.com wrote: Well i went ahead and learn a lot from the lift-openId implementation

[Lift] Re: So where is that OAuth?

2009-06-21 Thread marius d.
OAuth is not implemented yet in Lift still the project folder is there. I think Dave wanted to put it there but never got the chance to add it. Br's, Marius On Jun 21, 9:29 am, DFectuoso santiago1...@gmail.com wrote: Im trying to integrate OAuth (with twitter) in one of my projects... and i