mirror of
https://github.com/woodchen-ink/openai-billing-query.git
synced 2025-07-18 05:51:59 +08:00
69 lines
3.1 KiB
HTML
69 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>通过access_token来获取sess</title>
|
||
<meta name="description" content="批量快速查询OPENAI的余额,支持可视化展现已用比例、额度、已用量、未用量、是否GPT-4、是否GPT4-32K、是否绑卡、绑卡信息、组织信息、是否有效">
|
||
<link rel="stylesheet" href="./static/css.css" type="text/css" />
|
||
</head>
|
||
|
||
<body>
|
||
<header>
|
||
<h1 class="text-3xl font-semibold text-center mb-8 text-gradient">通过access token来获取sess</h1>
|
||
<p style="color:#FFF;text-align: center;">页面列表:<a href="index.html" style="color:#FFF;text-decoration: underline;">查API信息</a> <a href="get_sess1.html" style="color:#FFF;text-decoration: underline;">通过access token获取sess</a> </p>
|
||
</header>
|
||
|
||
<div class="query">
|
||
<div>
|
||
<h2 style="display: inline-block;">输入 Access Token</h2>
|
||
<p style="display: inline-block; font-size: smaller;">本站不保存 KEY 信息,查询后请自行保存</p>
|
||
</div>
|
||
<textarea id="api-key-input" placeholder="请输入 access_token,多个换行分开"></textarea></p>
|
||
<!-- API链接选择框 -->
|
||
<div class="api-url-container"></div>
|
||
<!-- API链接选择 -->
|
||
<div>
|
||
<h2 style="display: inline-block;">选择查询线路</h2>
|
||
<p style="display: inline-block; font-size: smaller;">支持自定义线路,官网线路需要魔法</p>
|
||
</div>
|
||
<select id="api-url-select" style="width:49%;">
|
||
<option value="https://api.openai.com">【官网线路】api.openai.com</option>
|
||
<option value="https://oapi.czl.net">【CZLoapi线路】oapi.czl.net</option>
|
||
<option value="https://openai.996.lat">【群友提供公益CF反代,勿测重要key】openai.996.lat</option>
|
||
<option value="custom">【已前置https】自定义 ...</option>
|
||
</select>
|
||
|
||
<!-- 自定义API链接输入框 -->
|
||
<input type="text" id="custom-url-input" placeholder="输入自定义API,填域名即可,无需https://" style="width:45%;" />
|
||
</div>
|
||
<button :class="{ loading }" :disabled="loading" onclick="sendRequest()">查询</button>
|
||
</div>
|
||
<h2 id="result-head" style="visibility:hidden">查询结果</h2>
|
||
<table id="result-table" style="visibility:hidden">
|
||
<thead>
|
||
<tr>
|
||
<th style="width:50px">序号</th>
|
||
<th>Access_Token</th>
|
||
<th >sess id</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody></tbody>
|
||
</table>
|
||
|
||
<footer>
|
||
<p>广告链接:
|
||
<a href="https://chat.czl.net" target="_blank">CZLChat</a>
|
||
<a href="https://oapi.czl.net" target="_blank">CZLOapi</a>
|
||
<a href="https://store0.czl.net" target="_blank">CZL Store</a>
|
||
<br>
|
||
本网页由<a href="https://woodchen.ink" target="_blank">woodchen</a>开源于<a
|
||
href="https://github.com/woodchen-ink/openai-billing-query" target="_blank">Github</a>,欢迎给个star
|
||
</p>
|
||
|
||
</footer>
|
||
<script src="./static/sess1.js"></script>
|
||
|
||
</body>
|
||
|
||
</html> |