Spaces:
Runtime error
Runtime error
import httpx | |
import json | |
from pprint import pprint | |
http_proxy = "http://localhost:11111" # Replace with yours | |
class ConversationCreator: | |
conversation_create_url = "https://www.bing.com/turing/conversation/create" | |
def __init__(self, cookies: dict = {}): | |
self.cookies = cookies | |
def construct_cookies(self): | |
self.httpx_cookies = httpx.Cookies() | |
for key, val in self.cookies.items(): | |
self.httpx_cookies.set(key, val) | |
def create(self, proxy: str = None): | |
self.construct_cookies() | |
self.response = httpx.get( | |
self.conversation_create_url, | |
proxies=http_proxy if proxy is None else proxy, | |
cookies=self.httpx_cookies, | |
) | |
self.response_content = json.loads(self.response.content.decode("utf-8")) | |
self.response_headers = dict(self.response.headers) | |
pprint(self.response_content) | |
# These info would be used in ConversationConnector | |
self.sec_access_token = self.response_headers[ | |
"x-sydney-encryptedconversationsignature" | |
] | |
self.client_id = self.response_content["clientId"] | |
self.conversation_id = self.response_content["conversationId"] | |
if __name__ == "__main__": | |
creator = ConversationCreator() | |
creator.create() | |