“jQuery Ajax Basic Authentication” Ответ

jQuery Ajax Basic Authentication

var username="username_here";
var password="password_here";
$.ajax({
  type: "GET",
  url: "myapi.php",
  dataType: 'json',
  headers: {
    "Authorization": "Basic " + btoa(username + ":" + password)
  },
  success: function (result){
      console.log(result)
  }
});
Grepper

jQuery ajax Get с аутентификацией

var username="username_here";
var password="password_here";
$.ajax({
  type: "GET",
  url: "myapi.php",
  dataType: 'json',
  headers: {
    "Authorization": "Basic " + btoa(username + ":" + password)
  },
  success: function (result){
      console.log(result)
  }
});
Selfish Seahorse

Ответы похожие на “jQuery Ajax Basic Authentication”

Вопросы похожие на “jQuery Ajax Basic Authentication”

Больше похожих ответов на “jQuery Ajax Basic Authentication” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования