Using JQuery, how would I call a JSONP API that required basic authentication?

Can I programatically handle this, or does the user have to interact and enter the username and password into the logon dialog?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

The JSONP request does not use the XMLHttpRequest Object / System. Hence there is no way to do this directly.

I tried several times the approach mentioned in FinnNk's answer, but finally gave up after reading this discussion on the JQuery mailing list.

Update

When I said "no way to do this directly", what I meant is:

  • You can't programmatically set the HTTP auth credentials (However, most browsers I have tested will prompt the user for credentials)
  • If you don't want the user to enter the credentials manually, you need to use a server to proxy your request. See this blog post for an excellent description and example.
link|improve this answer
Your link is broken. Good observation however re XMLHttpRequest. Not sure why @FinnNk's answer would have been accepted. – Crescent Fresh Nov 7 '09 at 4:19
@CrescentFresh Have corrected the link. – HRJ Nov 7 '09 at 14:44
feedback

I found this today, maybe it helps? http://kevinkuchta.webfactional.com/blog/2012/01/basic-authentication-with-jsonp.html

link|improve this answer
feedback

it is a little confusing since http://docs.jquery.com/Ajax/jQuery.getJSON doesn't have the same options as docs.jquery.com/Ajax/jQuery.ajax

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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