If we do window.location = "http://MyApi.com/Pdf";, browser does a GET of the URL http://MyApi.com/Pdf. But if we want to set authentication header of the request before doing GET of the URL because the server is a REST server and it doesn't support cookies. How to do this?

In all of the cases, I'm using $.ajax to call service but this time I need to show the response in a new window. Response is a PDF file content.

Thanks in advance.

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

It cannot be done, period.

Sorry for this type of answer, but no current browser supports what you are after.

The closest you will get is the username:password@uri syntax that Wumms already mentioned.

link|improve this answer
feedback

If you don't care about hiding or obfuscating the user credentials then just use plain GET authentification: use http://username:password@MyApi.com/ instead of http://MyApi.com/

link|improve this answer
Thanks v much for replying. I have a custom authentication mechanism. :(. So the value of authorization header looks something like CompanyNameToken <hashOfToken>. I wouldn't mind including the token in the URL if there is some quirk possible like this one. – iSid Dec 14 '11 at 14:14
feedback

Does it have to be a GET?

The reason I am asking is that you could just have a POST form (to a target="_BLANK") that posts whatever but shows an embedded file in a new window. Of course this wouldn't solve the issue with your custom headers, but then since you can also POST using jquery.ajax - which does allow you to set your own headers - you'd have the best of both worlds.

Here's a jQuery plugin that creates such a form dynamically in order to download whichever file. You could use this as a reference...

Hope this helps

link|improve this answer
feedback

You should configure $.ajax using beforeSend. Below an example, but of course I don't know if the exact setup will work for you without any code to look at.

$.ajax( {
    url : '/model/user.json',
    dataType : 'json',
    'beforeSend' : function(xhr) {
            var bytes = Crypto.charenc.Binary.stringToBytes(username + ":" + password);
            var base64 = Crypto.util.bytesToBase64(bytes);
            xhr.setRequestHeader("Authorization", "Basic " + base64);
    },
    error : function(xhr, ajaxOptions, thrownError) {
        reset();
        onError('Invalid username or password. Please try again.');
        $('#loginform #user_login').focus();
    },
    success : function(model) {
        cookies();
            ...
    }
});

For this to work you need crypto-js.

link|improve this answer
Doesn't quite answer the question I believe, the response is a PDF document to be rendered by the browser. – Murali VP Dec 14 '11 at 13:38
Let me clarify again. I don't need to set header for ajax request. I want to set header for full GET request of the page. I'm already using the beforeSend to set the header for all ajax request. – iSid Dec 14 '11 at 14:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.