“JQuery Ajax Basic Authentication” Code-Antworten

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 bekommen mit Authentifizierung

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

Ähnliche Antworten wie “JQuery Ajax Basic Authentication”

Fragen ähnlich wie “JQuery Ajax Basic Authentication”

Weitere verwandte Antworten zu “JQuery Ajax Basic Authentication” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen