Reputation: 14694
i'm working on a project which works very much with ajax (made via jquery).
how we want to secure the project more and set it up with https. now i have two questions:
need to know more about secure ajax requests
Upvotes: 0
Views: 1215
Reputation: 28974
You should also read up on the white papers by OpenAjax Alliance on Ajax and Mashup Security.
Upvotes: 1
Reputation: 4538
Of course you can do https requests.
The only requirement is that you domain is also in HTTPs, and the main website URL must be in HTTPS too.
If you choose to use HTTPS, then you won't be able to use HTTP anymore, as it will be considered as 2 differents domains.
Upvotes: 1