angularjs - Spring security CSRF CORS -
problem statement: have restful apis csrf protected using spring security. also, these apis accessed different origin/domain angular web ui. don't need spring authentication authentication handled siteminder.
approach: followed link from dave syer csrf protection : the login page: angular js , spring security part ii working except 1 issue (below).
issue: code work fine when angular html client accessing restful apis on same origin/domain; when try access same apis different origin, getting error 403 - access forbidden - csrf token error.
approach tried far extending example:
added cors filter - enabling cross origin requests restful web service
response.setheader("access-control-allow-origin", "*"); response.setheader("access-control-allow-methods", "post, get, options, delete"); response.setheader("access-control-max-age", "3600"); response.setheader("access-control-allow-headers", "x-requested-with");
no luck on above.
please suggest if need else make work.
thanks, suman
csrf , cors not same thing. have cors part sorted now, need add csrf token post/put/delete requests. spring security sends token in header in blog series quoted , angular picks there (you need add few lines of code working).
Comments
Post a Comment