Click here to Skip to main content
15,881,139 members

Comments by santosh.yadav198613 (Top 12 by date)

santosh.yadav198613 21-Oct-16 11:54am View    
Try calling action from Rest Client and check what you are missing
santosh.yadav198613 17-Oct-16 9:37am View    
No idea what your api suggests, but in most of the cases you need to POST this using webreqest.
santosh.yadav198613 17-Oct-16 9:35am View    
you can refer below template
$.ajax({
type: "POST",
url: url,
data: data,
success: success,
dataType: dataType
});
santosh.yadav198613 17-Oct-16 7:01am View    
Check this of it helps
http://javascript.info/tutorial/type-detection
santosh.yadav198613 16-May-16 10:05am View    
It can be done by adding custom headers, if you are using MVC you can add your own attribute to avoid this.