注册机问题讨论

2026-04-11 12:181阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐
问题描述:

下午把注册机的 400 修过去之后,100 个号成功了 15 个,刚才挂上准备接着跑,发现收不到邮件了。。是域名挂了还是奥特曼手段又精进了

网友解答:
--【壹】--:

风控政策,可能一直不发,也可能延几个小时再发,域名黑了


--【贰】--:

什么帖子?


--【叁】--:

奥特曼:你奥特曼大叔我呀,融到了不少钱,现在要开启一场名为红蓝对抗的运动.


--【肆】--:

我手动能注册chatgpt.com,但是打开cpa的codex回调登录全都要手机号验证,难绷


--【伍】--:

站里有帖子,可以找一下


--【陆】--:

image900×227 64.3 KB
oauth加上cloudflare质询了,要改方法


--【柒】--:

一觉起来发现自己的一百多个号基本全 401 了,我服了


--【捌】--:

400的问题是怎么解决的


--【玖】--:

你这个报错是脚本问题啊,都不是风控


--【拾】--:

古法注册也收不到邮件


--【拾壹】--:

奥特曼无敌了 那只能先睡觉了


--【拾贰】--:

这个是随机出现的,拉取下来的网页标题是robot,页面内容是wait…


--【拾叁】--:

可以重发,但是后面出add phone

def resend_oauth_email(self) -> bool: """在 OAuth 阶段重新触发邮件发送。""" self._log('[OAuth] 触发 OAuth 阶段邮件重发...') request_url = f'{self.oauth_issuer}/api/accounts/email-otp/resend' headers = self._headers( request_url, accept='*/*', referer=f'{self.oauth_issuer}/email-verification', origin=self.oauth_issuer, fetch_site='same-origin', extra_headers={ 'oai-device-id': self.device_id, }, ) headers.update(generate_datadog_trace()) try: kwargs = { 'headers': headers, 'timeout': 30, } if self.impersonate: kwargs['impersonate'] = self.impersonate self._browser_pause() response = self.session.post(request_url, **kwargs) if response.status_code == 200: self._log('[OAuth] OAuth 阶段邮件重发成功') return True self._log( f'[OAuth] OAuth 阶段邮件重发失败: {response.status_code} - {response.text[:200]}' ) return False except Exception as exc: self._log(f'[OAuth] OAuth 阶段邮件重发异常: {exc}') return False

def resend_registration_email(self) -> bool: """在注册阶段重新触发邮件发送。""" self._log('触发注册阶段邮件重发...') url = f'{self.AUTH}/api/accounts/email-otp/resend' headers = self._headers( url, accept='*/*', referer=f'{self.AUTH}/email-verification', origin=self.AUTH, fetch_site='same-origin', ) headers.update(generate_datadog_trace()) try: self._browser_pause() response = self.session.post( url, headers=headers, timeout=30, ) if response.status_code == 200: self._log('注册阶段邮件重发成功') return True self._log(f'注册阶段邮件重发失败: {response.status_code} - {response.text[:200]}') return False except Exception as exc: self._log(f'注册阶段邮件重发异常: {exc}') return False


--【拾肆】--:

第一封能收到第二封收不到了…玄学


--【拾伍】--:

别的都还好说,主要是授权addphone,邮箱不行的直接给整不会了


--【拾陆】--:

帖子没了我擦 群众里面有坏人


--【拾柒】--:

其实手动有时也收不到邮件。。。新注册的outlook小号登录codex输密码提示不正确,邮箱收不到邮件又开关了tun模式几次才收到原因尚不全面,疑似风控政策


--【拾捌】--:

我也是这样 早上起来一看邮箱 凌晨给我发了一大堆验证码 难蚌

问题描述:

下午把注册机的 400 修过去之后,100 个号成功了 15 个,刚才挂上准备接着跑,发现收不到邮件了。。是域名挂了还是奥特曼手段又精进了

网友解答:
--【壹】--:

风控政策,可能一直不发,也可能延几个小时再发,域名黑了


--【贰】--:

什么帖子?


--【叁】--:

奥特曼:你奥特曼大叔我呀,融到了不少钱,现在要开启一场名为红蓝对抗的运动.


--【肆】--:

我手动能注册chatgpt.com,但是打开cpa的codex回调登录全都要手机号验证,难绷


--【伍】--:

站里有帖子,可以找一下


--【陆】--:

image900×227 64.3 KB
oauth加上cloudflare质询了,要改方法


--【柒】--:

一觉起来发现自己的一百多个号基本全 401 了,我服了


--【捌】--:

400的问题是怎么解决的


--【玖】--:

你这个报错是脚本问题啊,都不是风控


--【拾】--:

古法注册也收不到邮件


--【拾壹】--:

奥特曼无敌了 那只能先睡觉了


--【拾贰】--:

这个是随机出现的,拉取下来的网页标题是robot,页面内容是wait…


--【拾叁】--:

可以重发,但是后面出add phone

def resend_oauth_email(self) -> bool: """在 OAuth 阶段重新触发邮件发送。""" self._log('[OAuth] 触发 OAuth 阶段邮件重发...') request_url = f'{self.oauth_issuer}/api/accounts/email-otp/resend' headers = self._headers( request_url, accept='*/*', referer=f'{self.oauth_issuer}/email-verification', origin=self.oauth_issuer, fetch_site='same-origin', extra_headers={ 'oai-device-id': self.device_id, }, ) headers.update(generate_datadog_trace()) try: kwargs = { 'headers': headers, 'timeout': 30, } if self.impersonate: kwargs['impersonate'] = self.impersonate self._browser_pause() response = self.session.post(request_url, **kwargs) if response.status_code == 200: self._log('[OAuth] OAuth 阶段邮件重发成功') return True self._log( f'[OAuth] OAuth 阶段邮件重发失败: {response.status_code} - {response.text[:200]}' ) return False except Exception as exc: self._log(f'[OAuth] OAuth 阶段邮件重发异常: {exc}') return False

def resend_registration_email(self) -> bool: """在注册阶段重新触发邮件发送。""" self._log('触发注册阶段邮件重发...') url = f'{self.AUTH}/api/accounts/email-otp/resend' headers = self._headers( url, accept='*/*', referer=f'{self.AUTH}/email-verification', origin=self.AUTH, fetch_site='same-origin', ) headers.update(generate_datadog_trace()) try: self._browser_pause() response = self.session.post( url, headers=headers, timeout=30, ) if response.status_code == 200: self._log('注册阶段邮件重发成功') return True self._log(f'注册阶段邮件重发失败: {response.status_code} - {response.text[:200]}') return False except Exception as exc: self._log(f'注册阶段邮件重发异常: {exc}') return False


--【拾肆】--:

第一封能收到第二封收不到了…玄学


--【拾伍】--:

别的都还好说,主要是授权addphone,邮箱不行的直接给整不会了


--【拾陆】--:

帖子没了我擦 群众里面有坏人


--【拾柒】--:

其实手动有时也收不到邮件。。。新注册的outlook小号登录codex输密码提示不正确,邮箱收不到邮件又开关了tun模式几次才收到原因尚不全面,疑似风控政策


--【拾捌】--:

我也是这样 早上起来一看邮箱 凌晨给我发了一大堆验证码 难蚌