I started coding a LoginModule for Nancy, but it occurred to me that possibly I need to perform authentication a different way. Is there an accepted way of doing auth in Nancy? I am planning two projects right now: web and json service. I will need auth for both.
feedback
|
|
As Steven writes Nancy supports basic and form auth out of the box. Have a look these two demo apps to see how to do each: https://github.com/NancyFx/Nancy/tree/master/src/Nancy.Demo.Authentication.Basic and https://github.com/NancyFx/Nancy/tree/master/src/Nancy.Demo.Authentication.Forms From the second of those demos here is a module that requires auth:
and a bootstrapper snippet that sets up form auth in the request pipeline:
| |||
|
feedback
|