关于team账单问题想请教一下。

Hikling 2026-07-31 01:35 1

我team是英区的11镑,由于当时赶时间随便填了个地址导致多收了0.88英镑的税。长链接付款的,用bybit卡


后面我去team空间[结算-计划-付款方式]那里尝试改账单地址为免税州,显示“我的卡被拒付”


然后我又去[结算-设置]里把我的账单地址改成免税州了。


我想问一下这种情况下次扣费是按我[付款计划]的账单地址,还是我[设置]里的地址啊?


因为我付款计划是有税的,设置里是免税的。

很疑惑这个,有大佬解答一下吗?

最新回复 (5)
  • Hikling 楼主 07-31 01:39
    1

    没有大佬知道这个问题么

  • lwaa 07-31 01:57
    2

    看看能不能看到


    (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;

    })();

  • Hikling 楼主 07-31 01:58
    3

    @lwaa #2 这个怎么用的,大佬

  • chevis 07-31 11:41
    4

    @Hikling #3 控制台输入

  • Hikling 楼主 07-31 14:21
    5

    @chevis #4 可以了,谢谢

* 帖子来源NodeSeek
返回