hi, any one knows any good article or method to secure AJAX interface that accepts GET requests.
A:
AJAX doesn't accept anything. AJAX is just a way of doing an HTTP request. It's up to you to secure it server side.
Luca Matteis
2009-12-25 04:40:29
A:
A quick SO search turns up this:
http://stackoverflow.com/questions/118910/best-way-to-secure-an-ajax-app
http://stackoverflow.com/questions/446467/guide-for-securing-an-ajax-php-webapp
http://stackoverflow.com/questions/503469/securing-a-remote-ajax-method-call
http://stackoverflow.com/questions/1960483/how-to-secure-ajax-interface-accepting-get-requests
Voting to close as duplicate.
Pekka
2009-12-25 04:41:28
+1
A:
check the session to make sure the user is authorized, basically just like any other secure web page.
jspcal
2009-12-25 04:42:03