So this happened when I tried to use the return JsonResult from one of my action method.
"This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet."
Here is how you need to return your JsonResult response.
return Json(new { Id = "someid" }, JsonRequestBehavior.AllowGet);
Hope this helps.
Thanks.
Clik here to view.
