mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
bingAI: completed
This commit is contained in:
parent
2ac6107614
commit
bfa1a68ed2
7 changed files with 34 additions and 14 deletions
14
en/searchurl/bingAI/test.html
Normal file
14
en/searchurl/bingAI/test.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<script>
|
||||
let url = "https://muweb.us.to/turing/conversation/create";
|
||||
/*
|
||||
fetch(url, {credentials: 'include'})
|
||||
.then(r=>r.text()).then(data=>{alert(data);});
|
||||
*/
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open("GET", url, true);
|
||||
xhr.withCredentials = true;
|
||||
xhr.onload = function(){
|
||||
alert(xhr.responseText);
|
||||
};
|
||||
xhr.send();
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue