GPT Business 最新 48 月优惠码大集合|全球各国几十个优惠码,还没上的抓紧冲!

GPT Business 最新 48 月优惠码,全球各国,几十个优惠码大集合,还没有的抓紧冲!…

视频教程

视频介绍

本视频由 短裤AI分享 制作,时长约 4 分钟。

GPT Business 最新 48 月优惠码,全球各国,几十个优惠码大集合,还没有的抓紧冲!

如何使用:

使用对应地区的ip网络,将链接中 CODE 替换为对应区域的 优惠码

1
2
3

https://chatgpt.com/?promoCode=CODE

US

f6sus

bluelabelus

cadreai

learnair

madewellaius

metaverdeus

polyagentsus

sayfeaius

stellisaius

Canada

f6sca, madewellaica, orderitca

Brazil

f6sbr

Mexico

metaverdemx, kemenymx

Australia

chieftnsau

timeundertension

adacaau

ajaiaus

pathfindrau

polyagentsau

rocketagency

Singapore

adacasg, pathfindrsg, aiworkssg, bluelabelsg, polyagentssg

UK

f6sgb, iwantmoreaigb, orderitgb

Europe

DE f6sde, kleberdigitalde

ES f6ses

FR f6sfr

IT f6sit

IE orderitie

NL f6snl

India

f6sin, cloudthatin

New Zealand

adacanz, pathfindrnz

South Africa

pathfindrza

上面是第四期这期的内容,,前三期的视频教程,见短裤AI分享油管频道中查找,包括使用优惠码的过程

下面脚本是澳大利亚优惠码为例的脚本,如果是换了优惠码,则脚本中的优惠码替换即可,获取长连接的stripe支付链接


-

绑卡的话还是跟一期一样,SafePal或者bybit都可,这两个卡,https://869hr.uk的博客和油管频道里面都有讲过如何开卡,bybit开卡视频https://youtu.be/3sN7P2t\_CeA

3、第三种支付办法,用YPT卡,绑到apple pay上,把长连接生成的stripe链接,复制到手机上支付也可

4、 第四种支付办法,如果你有Paypal,则使用如下脚本运行长连接生成支付链接,则打开的支付链接有Paypal支付方式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195

(async function generateAUTeamLink() {

const DEFAULT_PROMO_CODE = "STRIPEATLASGPT4BIZ050126";

// 优先读取当前页面 URL 参数中的 promoCode,没有则使用默认值

const PROMO_CODE =

new URLSearchParams(location.search).get("promoCode")?.trim() ||

DEFAULT_PROMO_CODE;

console.log("正在获取 Session Token...");

let accessToken;

try {

// 获取当前登录 session

const sessionResp = await fetch("/api/auth/session", {

credentials: "include",

});

if (!sessionResp.ok) {

throw new Error(`Session 请求失败 HTTP ${sessionResp.status}`);

}

const session = await sessionResp.json();

accessToken = session?.accessToken;

if (!accessToken) {

throw new Error("accessToken 为空");

}

} catch (e) {

console.error("获取 Token 失败:", e.message);

return;

}

console.log("Token 获取成功");

// 构造支付请求参数

const payload = {

plan_name: "chatgptteamplan",

team_plan_data: {

workspace_name: `workspace-${Date.now()}`,

price_interval: "month",

seat_quantity: 2,

},

billing_details: {

country: "AU",

currency: "AUD", // 修复错误引号

},

cancel_url: `https://chatgpt.com/?promoCode=${encodeURIComponent(

PROMO_CODE

)}`,

promo_code: PROMO_CODE,

checkout_ui_mode: "hosted",

};

console.log("正在请求 Stripe 长链接...");

try {

const resp = await fetch(

"https://chatgpt.com/backend-api/payments/checkout",

{

method: "POST",

headers: {

Authorization: `Bearer ${accessToken}`,

"Content-Type": "application/json",

},

body: JSON.stringify(payload),

}

);

let data;

try {

data = await resp.json();

} catch {

data = null;

}

// 检查请求状态

if (!resp.ok) {

console.error(`请求失败 HTTP ${resp.status}`);

console.log("响应详情:", data);

return;

}

// 提取 Stripe Hosted Checkout URL

const hostedUrl =

data?.url ||

data?.stripe_hosted_url ||

data?.checkout_url ||

null;

if (!hostedUrl) {

console.warn("未找到 Stripe 长链接,原始响应:", data);

return;

}

// 输出成功信息

console.log("=".repeat(60));

console.log("✅ ChatGPT Team 链接生成成功");

console.log("Checkout Session ID:", data?.checkout_session_id || "N/A");

console.log("计划:", "ChatGPT Team");

console.log(

"国家/币种:",

`${payload.billing_details.country}/${payload.billing_details.currency}`

);

console.log("席位:", payload.team_plan_data.seat_quantity);

console.log("优惠码:", PROMO_CODE);

console.log("Stripe 长链接:");

console.log(hostedUrl);

console.log("=".repeat(60));

} catch (e) {

console.error("网络异常:", e.message);

}

})();

支付价格如下图

步骤不再详细讲了,看第一期视频,只是优惠码链接变了,及长连接脚本变了,看下面这两个

  1. 澳大利亚优惠码链接 https://chatgpt.com/?promoCode=chieftnsau
  2. 长连接脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110

(async function () {

console.log(“

正在为 chieftnsau 生成澳大利亚版支付长链接…”);

try {

const session = await fetch(“/api/auth/session”).then((r) => r.json());

if (!session.accessToken) {

throw new Error(“无法获取 Token,请确保已登录 ChatGPT”);

}

const payload = {

plan_name: “chatgptteamplan”,

team_plan_data: {

workspace_name: “myWorkspace”,

price_interval: “month”,

seat_quantity: 2

},

billing_details: {

country: “AU”, // 澳大利亚专用

currency: “AUD// 澳元

},

cancel_url: “https://chatgpt.com/?promoCode=chieftnsau”,

promo_code: “chieftnsau”,

checkout_ui_mode: “hosted”

};

const response = await fetch(

https://chatgpt.com/backend-api/payments/checkout”,

{

method: “POST”,

headers: {

Authorization: Bearer ${session.accessToken},

Content-Type”: “application/json”,

},

body: JSON.stringify(payload),

}

);

const data = await response.json();

if (data.url) {

console.clear();

console.log(“%c

成功生成带 chieftnsau 优惠的长链接:
- ”, “color: #10a37f
- font-size: 22px
- font-weight: bold
- ”)

console.log(data.url);

console.log(“

%c直接点开这个链接 → 应该能看到 AU$25 左右(2席位,48个月锁定)澳大利亚优惠价格”, “color:
- gray
- font-size: 16px
- ”)

} else {

console.error(“

生成失败,响应:”, data);

}

} catch (e) {

console.error(“

执行出错:”, e);

}

})();

通过Chrome浏览器里面,f12,进入console,输入长连接脚本,生成stripe的支付链接,拷贝出来,然后打开链接,填入银行卡进行支付,如果使用苹果手机,用apple pay支付的话,把链接,复制到手机上,用浏览器打开,

支付成功如下图

GPT Business(ChatGPT Team)最新 48 个月优惠码大集合!覆盖美国、加拿大、巴西、墨西哥、澳大利亚、新加坡、英国、欧洲各国、印度、新西兰、南非等全球几十个地区。每个国家多个优惠码,随时可能失效,还没上的抓紧冲!

📌 使用方法:

  1. 使用对应地区的 IP 网络
  2. 将链接中 CODE 替换为对应区域的优惠码
  3. 在浏览器打开:https://chatgpt.com/?promoCode=CODE
  4. 登录后 F12 进入 Console,运行长链接脚本生成 Stripe 支付链接
  5. 打开支付链接完成支付

💳 支付方式:

  • SafePal 或 Bybit 虚拟卡
  • YPT 卡绑 Apple Pay
  • PayPal(用对应脚本)

📺 详细教程步骤见第一期视频,本视频主要是最新优惠码和更新后的脚本。
#GPTBusiness #ChatGPTTeam #优惠码 #GPT优惠 #ChatGPT优惠

0:00 如何使用:

0:42 US

1:17 Canada:

1:29 Brazil:

1:35 Mexico:

1:43 Australia

2:04 Singapore:

2:20 UK:

2:32 Europe:

2:52 India:

3:00 New Zealand:

3:07 相关链接

注意,相关视频中的内容,命令,脚本,代码,都在博客文章中会有 🔗https://869hr.uk

短信及语音接码平台

纯净住宅IP白嫖流量

  1. 微信讨论群:https://qr.869hr.uk/aitech
  2. 超过100T资料总站网站:https://doc.869hr.uk
  3. Telegram群聊:https://t.me/tgmShareAI
  4. 微信公众号:搜“AI前沿的短裤哥”
  5. 视频的文字博客(银行卡、手机号、VPS主机、IP测试等):https://869hr.uk
  6. 推特:https://x.com/gxjdian
  7. Youtube:https://youtube.com/@gxjdian

VPS 主机推荐

VPS DMIT

VPS VIRCS

账号、礼品卡与 AI 产品充值

eSIM 与支付卡推荐

  1. 三家eSIM 让国产手机秒变eSIM手机,全方面优缺点对比及开户链接🔗 https://s.869hr.uk/mcc
  2. eSIM 9eSIM打 9 折(优惠码:maq)注册及购买链接 https://www.9esim.com/?coupon=maq
  3. eSIM ESTK打 9 折(优惠码:GXJDIAN)注册及购买链接 https://store.estk.me/zh?aid=16007
  4. eSIM XeSIM打 9 折(推荐码:gxjdian)注册及购买链接 https://xesim.cc/?DIST=RE5FHg==
  5. wise的申请链接及教程链接(有身份证就可,推荐码:lizhiw12) (教程链接https://x.com/wlzh/status/19967997897…) (申请链接https://wise.com/invite/ihpc/lizhiw12)
  6. N26 的申请链接及教程链接 (需要护照, 推荐码:lizhiw02766c ) https://youtu.be/HY9OD8rX89s?si=78REb8MyKSJB6cwQ
  7. Bybit支付卡申请链接 https://www.bybit.com/invite?ref=LGNQRG,教程链接https://youtu.be/3sN7P2t_CeA

YouTube 播放列表

如果你觉得这期视频对你有帮助,请务必:

👍 点赞本视频

💬 在评论区留下你的问题或成功注册的截图

🔔 订阅频道并打开小铃铛,获取最新硬核白嫖教程和科技前沿资讯!
#GPTBusiness #ChatGPTTeam #优惠码 #GPT优惠 #ChatGPT优惠 #promocode #GPTBusiness2025

参考链接