tags:

views:

76

answers:

3

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
+1  A: 

check the session to make sure the user is authorized, basically just like any other secure web page.

jspcal