Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var data = null;
  2.  
  3. var xhr = new XMLHttpRequest();
  4. xhr.withCredentials = true;
  5.  
  6. xhr.addEventListener("readystatechange", function () {
  7.   if (this.readyState === 4) {
  8.     console.log(this.responseText);
  9.   }
  10. });
  11.  
  12. xhr.open("GET", "https://emall13.xarx.rocks/wp-json/xarx/custom-order");
  13. xhr.setRequestHeader("Authorization", "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczpcL1wvZW1hbGwxMy54YXJ4LnJvY2tzIiwiaWF0IjoxNTc1NTY4OTcwLCJuYmYiOjE1NzU1Njg5NzAsImV4cCI6MTU3NjE3Mzc3MCwiZGF0YSI6eyJ1c2VyIjp7ImlkIjoiMjk4In19fQ.n_uqp-5T_hRG3KYpEnkKpBLkn_CztdCjstf90guy56I");
  14.  
  15. xhr.send(data);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement