I want to make a ajax call using $.POST. But I am getting 403 error. But GET works perfectly fine. My code is:
var url = \"/xyz/abc/subscribe?name=\"+name; $
You're trying to make a POST request to a REST endpoint you're not authorized to. Either your session has become invalid, or the user you're logging in as doesn't have authority like @geoand already pointed out.