File size: 1,128 Bytes
d7a4ce1
 
 
 
 
1fb0b11
d7a4ce1
 
e449329
1fb0b11
 
 
 
d7a4ce1
e449329
1fb0b11
 
 
 
 
 
 
 
 
 
 
d7a4ce1
9ae3772
d7a4ce1
672ca78
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Gradio Chatbot with Cookies</title>
</head>
<body>
    <h1>Gradio Chatbot</h1>
    <iframe id="chatbot" src="https://srinukethanaboina-srunu.hf.space" width="100%" height="600px" style="border:none;"></iframe>

    <button onclick="printCookies()">Print Cookies</button>

    <script>
        function printCookies() {
            const iframe = document.getElementById('chatbot');
            try {
                // Access cookies from the iframe (may not work due to same-origin policy)
                const iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
                console.log("Iframe Cookies:", iframeDocument.cookie);
            } catch (e) {
                console.error("Unable to access iframe cookies. Possibly due to same-origin policy.");
            }
            
            // Access cookies from the main document
            console.log("Main Document Cookies:", document.cookie);
        }
    </script>
</body>
</html>