智能助手网
标签聚合 到期

/tag/到期

linux.do · 2026-04-17 17:47:06+08:00 · tech

正常领取是2500万token,一个月到期。 并发领取能领取两次就是5000万。其中2500万会在一个月后过期,另外2500万token则是到2026年12月31日到期。 (我注册了8亿token,到时候发出来给大家用) 登录 https://eaichat.ctyun.cn/chat/ 获取cookie 填入脚本执行领取。 打开 https://pc.ctyun.cn/#/desktop-list 登录刚刚领取的云电脑,桌面有个云智助手(预装的是旧版的,在设置中更新下),获取API Key。 里面有个coding plan是刚上新的,跟天翼云的息壤套餐不一样。 价格40一个月。 电信的可以直接领取,联通和移动需要下载天翼云电脑APP登录身份证实名。 可以尝试注销了重新注册看看能不能重复领取。 import asyncio from typing import Dict, List import aiohttp import sys if sys.platform == 'win32': asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) def build_request_headers() -> Dict[str, str]: headers = { "Host": "eaichat.ctyun.cn", "Accept": "application/json, text/plain, */*", "Content-Type": "application/json", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36", "Cookie": "" } return headers def build_request_payload() -> Dict[str, int]: payload = { "mirrorType": 1 } return payload async def send_single_request( session: aiohttp.ClientSession, url: str, headers: Dict[str, str], payload: Dict[str, int], task_id: int ) -> None: try: # 本地 HTTPS 环境通常无有效证书,配置 ssl=False 避免证书验证报错 async with session.post(url, headers=headers, json=payload, ssl=False) as response: status_code = response.status #print(f"[Task {task_id:03d}] 请求完成,状态码: {status_code}") except Exception as error: #print(f"[Task {task_id:03d}] 请求发生异常: {error}") pass async def execute_load_test( target_url: str, concurrency_level: int ) -> None: headers = build_request_headers() payload = build_request_payload() connector = aiohttp.TCPConnector(limit=concurrency_level, ssl=False) async with aiohttp.ClientSession(connector=connector) as session: tasks: List[asyncio.Task] = [] for index in range(concurrency_level): task = asyncio.create_task( send_single_request(session, target_url, headers, payload, index + 1) ) tasks.append(task) await asyncio.gather(*tasks) def main() -> None: target_url = "https://eaichat.ctyun.cn/api/v1/openclaw-hub/desktop-claims" concurrency_level = 200 print(f"开始向 {target_url} 并发发送 {concurrency_level} 个请求...") # 启动异步事件循环 asyncio.run(execute_load_test(target_url, concurrency_level)) print("\n所有并发请求测试执行完毕。") if __name__ == "__main__": main() 60 个帖子 - 26 位参与者 阅读完整话题

linux.do · 2026-04-16 16:44:57+08:00 · tech

之前在海鲜市场上的拼车,到期之后没马上退,隔了一天之后发现变成工作空间的唯一所有者了。 已知:不是那种清理 cookie 可以退出的。 https://linux.do/t/topic/1853285/8 没用 https://linux.do/t/topic/1850476 好像不是一个类型的 说实话我也联系过好几次openai的客服和写邮件,得到的回复是先让截图、后来又让录视频,再后来让复制什么缓存。因为感觉很像是自己挖坟,所以没再继续了。 最近很想试试低价pro,因为有个已停用的工作空间很怕受影响。难道只能重新激活了吗?佬们 4 个帖子 - 3 位参与者 阅读完整话题