Lets say you have following urls for POST,
url="http://www.example.com/processor?param1=val1¶m=val2"
url2="http://www.example.com/processor"
Say you are sending POST request using Jquery.
$.post(url,{},function(){});
How is that different from,
$.post(url2,{"param1":"val1","param2":"val2"},function(){});
Can you also do something like,
$.post(url1,{"param1":"val1","param2":"val2"},function(){});
Is is a good practice to use parameters in POST URL (like url above (not url2))?