Top "Restful-authentication" questions

Questions about authentication for RESTful services.

ASP.net Web API RESTful web service + Basic authentication

I'm implementing a RESTful web service using ASP.Net Web Api. I have concluded to use Basic authentication + SSL to …

asp.net-web-api basic-authentication restful-authentication
AngularJS Authentication + RESTful API

Angular+RESTful Client-side Communication w/ API for Auth/(re)Routing This has been covered in a few different questions, and …

javascript angularjs node.js restful-authentication angular-http-interceptors
How to use jti claim in a JWT

The JWT spec mentions a jti claim which allegedly can be used as a nonce to prevent replay attacks: The "…

node.js rest express restful-authentication jwt
HTTP 401 Unauthorized or 403 Forbidden for a "disabled" user?

An authentication service allows user accounts be disabled (a sort of soft-delete). If the server then receives an authentication request …

http rest restful-authentication
Token Authentication for RESTful API: should the token be periodically changed?

I'm building a RESTful API with Django and django-rest-framework. As authentication mechanism we have chosen "Token Authentication" and I have …

django rest restful-authentication django-rest-framework
Rest - how get IP address of caller

I am writing a Java Rest Web Service and need the caller's IP Address. I thought I saw this in …

java web-services rest jax-rs restful-authentication
Should JWT be stored in localStorage or cookie?

For the purpose of securing REST API using JWT, according to some materials (like this guide and this question), the …

security cookies local-storage jwt restful-authentication
Spring Security Token Authentication - RESTful JSON Service

I'm looking to use Spring Security for a Spring MVC application which will strictly be a JSON web service. I've …

spring-mvc spring-security restful-authentication
Adding headers to postForObject() method of RestTemplate in spring

I am calling web service using below method. ResponseBean responseBean = getRestTemplate() .postForObject(url, customerBean, ResponseBean.class); Now my requirement got …

spring rest web-services restful-authentication