How do I make a JSONP call with JQuery with Basic Authentication?

后端 未结 3 544
名媛妹妹
名媛妹妹 2020-12-03 11:22

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 use

3条回答
  •  星月不相逢
    2020-12-03 11:32

    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.

提交回复
热议问题