This is probably the MOST basic question and for some reason but I'm a bit dumbfounded. I am designing a restful service which has multiple pages. Clicking on a link by default fires an HTTP GET
Now how do I send authorization data with the get request? Should it be part of url? I'll be forced to create an ugly url with encrypted query parameters. Is there any way to avoid this?
Is there something in javascript/jquery that could just send this data 'under the hood', so to speak?
in JQuery the $.ajax method takes username, password as arguments so that authorization data can be sent along with the ajax call. Anything equivalent for non-ajax calls or am I left with the URL only?
Reason for this approach:
- I want the user to be able to click the 'back button' and go back to the previous page. If I did a
$.getwith the authorization, and followed it with$('html').replaceWith(result)it would disable the back button, correct? (i.e., not show anything)
This should probably be a REST 101 but for some reason it's had me cornered
(FYI: Technologies: Jquery/javascript/Restlet/Freemarker)
(PS: Cookies as last resort. Or are they the best way? :)