I'm looking for a more detailed description of what is required for my endpoint for Ionic's custom Authentication. Ionic Custom Authentication. If possible a sample project or a tutorial to follow. I've looked extensively however, either my googling skills have died or there's nothing more out there (from what I can see).
I've tested this with the 'basic' setting, but need to connect with my own endpoint through ionic. As seen below:
Ionic.Auth.login('custom', options, details).then(function (success) {
console.log('Ionic Login Success:');
console.log(success);
}, function (failure) {
console.error('Ionic Login Failure: ' + failure.response.body.error.message);
});
Some Background: I have a Ionic Cordova app that can connect/authenticate to my WCF Web API (by doing some hack of a login/authentication process) and then retrieving data for the logged in user. I need to convert this to Ionic Auth. PS. I have no Experience with JWT and have gotten as far as installing the System.IdentityModel.Tokens.Jwt Package on my WCF service.
Any information is appreciated. Thanks in advance!
I know the question lacks some details but I can't give more until I know more