“jQuery ajax Get с аутентификацией” Ответ

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 Get с аутентификацией”

Вопросы похожие на “jQuery ajax Get с аутентификацией”

Больше похожих ответов на “jQuery ajax Get с аутентификацией” по JavaScript

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

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