本帖最后由 潇湘妃子 于 2024-12-6 20:09 编辑
通过分析JS源码抓包改包突破了等待页面,但是最后还是无法完成认证。
理想情况下最后一个步骤应该返回sessionUrl跳转到一个第三方网站完成认证流程。
最后一步认证接口地址
- https://www.coinbase.com/api/v3/coinbase.global_onboarding_service.public.vendor_verification.VendorVerificationService/StartIdentification
复制代码
视频验证响应报文
- {
- "code": 13,
- "message": "error starting identification in webid: rpc error: code = Unknown desc = failed to get user id from store: no user found with the provided edp_id\nwebid StartIdentification request failed"
- }
复制代码
银行认证响应报文
- {
- "code": 13,
- "message": "error starting identification in solaris: rpc error: code = NotFound desc = Not found\nsolaris StartIdentification request failed"
- }
复制代码 |