-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
58 lines (53 loc) · 2.15 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>ارسال درخواست به سرور</title>
<script>
// کد جاوا اسکریپت برای ارسال درخواست
</script>
</head>
<body>
<button onclick="sendHttpRequest()">ارسال درخواست</button>
<div id="result"></div>
<button onclick="retest()">ارسال درخواست</button>
<script>
function retest(){
fetch('http://127.0.0.1:5000/admin/admin_only', {
headers: {
'Authorization': 'Bearer ' + localStorage.getItem("adtok")
}
}).then(x=>x.json().then(j=>{
console.log(j)
}))
}
function sendHttpRequest() {
localStorage.setItem("adtok",null)
// ایجاد یک شیء XMLHttpRequest
const xhr = new XMLHttpRequest();
// تنظیم روش درخواست، آدرس و نوع داده
xhr.open('GET', 'http://127.0.0.1:5000/admin/login?username=admin&password=password', true); // GET برای دریافت داده، POST برای ارسال داده
xhr.responseType = 'json'; // انتظار داریم پاسخ به صورت JSON باشد
// ارسال درخواست
xhr.send();
// هنگامی که پاسخ از سرور دریافت شد
xhr.onprogress = (x)=>{
console.log(x)
}
xhr.onload = function() {
if (xhr.status === 200) {
localStorage.setItem("adtok",xhr.response.access_token)
fetch('http://127.0.0.1:5000/admin/admin_only', {
headers: {
'Authorization': 'Bearer ' + localStorage.getItem("adtok")
}
}).then(x=>x.json().then(j=>{
console.log(j)
}))
} else {
console.error('خطا در درخواست:', xhr.statusText);
}
};
}
</script>
</body>
</html>