Reputation: 931
Anyone please suggest me tutorial or referrence to implement custom Authentication using Java script backend in windows azure mobile service.
I had gone through the link:
it has only .Net backend. Would appreciate if anyone has implemented or has idea on this could share code or highlight on the implementation.
Thanks in advance.
Upvotes: 0
Views: 692
Reputation: 3017
Check out this post (and the ones linked off from it): http://chrisrisner.com/Custom-Authentication-with-Azure-Mobile-Services-and-LensRocket. Essentially you need to create a Login and a Register method (with the suggestion to do so using Custom APIs). Inside of these you'll generate your own JWT for authenticated users.
Upvotes: 2