之前撸 GPT 48 tean 2卡1 席位的出账单要付二席位的钱

baolaowang 2026-07-10 20:15 1

您的baoolaowang のワークスペーsu工作空间的 ChatGPT Business 订阅将于2026 年 7 月 17 日续订。您将需要支付2 个座位的费用。您仍然可以在续订前 24 小时内添加或删除席位。


最新回复 (13)
  • shen1e 07-10 20:16
    1

    没看懂,你图上哪里超了

  • baolaowang 楼主 07-10 20:17
    2

    @shen1e #1 有bug,2席位卡 1席位....

  • she 07-10 20:19
    3

    现在bug堵了?

  • shen1e 07-10 20:20
    4

    @baolaowang #2

    我也卡这个 bug 了,哪里能看到超了?

  • baolaowang 楼主 07-10 20:21
    5

    @shen1e #4 ChatGPT Business 订阅将于2026 年 7 月 17 日续订。您将需要支付2 个座位的费用。您仍然可以在续订前 24 小时内添加或删除席位。


    懵逼中,,

  • shen1e 07-10 20:21
    6

    @baolaowang #5

    哪里的消息,你图上不是这么写的呀

  • shen1e 07-10 20:25
    7

    去查一下自己下个月的账单


    (async () => {
    const sessionResp = await fetch('/api/auth/session', { credentials: 'include' });
    if (!sessionResp.ok) throw new Error('session HTTP ' + sessionResp.status);

    const session = await sessionResp.json();
    const accessToken = session.accessToken;
    if (!accessToken) throw new Error('没有拿到 accessToken,确认已登录 chatgpt.com');

    const headers = {
    Authorization: `Bearer ${accessToken}`,
    Accept: 'application/json',
    'Content-Type': 'application/json',
    'oai-language': 'zh-Hant',
    'oai-device-id': crypto.randomUUID(),
    };

    const getJson = async (url) => {
    const r = await fetch(url, { headers });
    const text = await r.text();
    if (!r.ok) throw new Error(`${url} HTTP ${r.status}: ${text.slice(0, 300)}`);
    return JSON.parse(text);
    };

    const accountCheck = await getJson('/backend-api/accounts/check/v4-2023-04-27');
    const accounts = accountCheck.accounts || {};
    const firstKey = Object.keys(accounts)[0];

    const accountId =
    accounts[firstKey]?.account?.account_id ||
    session.account?.id ||
    firstKey;

    if (!accountId) throw new Error('没有拿到 account_id');

    const [invoices, paymentMethods, billingInfo] = await Promise.all([
    getJson(`/backend-api/invoices?limit=10&account_id=${encodeURIComponent(accountId)}`),
    getJson(`/backend-api/payments/payment_methods?account_id=${encodeURIComponent(accountId)}`),
    getJson(`/backend-api/payments/billing_info?account_id=${encodeURIComponent(accountId)}`),
    ]);

    const result = {
    email: session.user?.email,
    plan: accounts[firstKey]?.account?.plan_type || session.account?.planType,
    accountId,
    accessTokenStatus: accessToken ? `exists (${accessToken.length} chars)` : 'missing',
    invoices,
    paymentMethods,
    billingInfo,
    };

    console.log('账单提取结果:', result);
    console.log('Stripe/账单管理页:', `https://chatgpt.com/account/manage?account_id=${encodeURIComponent(accountId)}`);

    window.__billingResult = result;
    return result;
    })();
  • baolaowang 楼主 07-10 20:26
    8

    @shen1e #6 emmmm,,,我也不晓得了,,,刚收到GPT官方的短信,,17号过后 生死有命富贵在天

  • baolaowang 楼主 07-10 20:27
    9

    @shen1e #7


    这算??

  • shen1e 07-10 20:30
    10

    1

  • baolaowang 楼主 07-10 20:33
    11

    @shen1e #10 我是一个成员的,一席位,可能点开通了gpt,codex席位不确定能不能用... 还没用过


  • shen1e 07-10 20:43
    12

    @baolaowang #11

    不可以了,你的图跟我的不同了,已经没有选项了

  • bqfj98 07-11 02:09
    13

    为啥额度余额-37

* 帖子来源NodeSeek
返回