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?
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?
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
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: