Advertisement
Guest User

Untitled

a guest
Sep 7th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $.ajax({
  2. type: "GET",
  3. dataType: "json",
  4. contentType: "application/json",
  5. username: "user",
  6. password: "admin",
  7. url: "http://localhost:8080/projects/1",
  8. xhrFields: {
  9. withCredentials: true
  10. },
  11. success: function(data){
  12. console.log(data);
  13. }
  14. });
  15.  
  16. Failed to load resource: the server responded with a status of 401 ()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement