bingAI: completed

This commit is contained in:
James Feng Cao 2023-04-06 09:05:34 +08:00
parent 2ac6107614
commit bfa1a68ed2
7 changed files with 34 additions and 14 deletions

View 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>