苹果内购支付检验错误码

news/2024/7/20 20:02:46 标签: iOS

21000

The request to the App Store didn’t use the HTTP POST request method.

对App Store的请求没有使用HTTP POST请求方法。


21001

The App Store no longer sends this status code.

App Store不再发送此状态代码。


21002

The data in the receipt-data property is malformed or the service experienced a temporary issue. Try again.

receipt-data属性中的数据格式错误,或者服务遇到了临时问题。再试一次。


21003

The system couldn’t authenticate the receipt.

系统无法验证收据。


21004

The shared secret you provided doesn’t match the shared secret on file for your account.

您提供的共享密钥与您帐户存档的共享密钥不匹配。


21005

The receipt server was temporarily unable to provide the receipt. Try again.

收据服务器暂时无法提供收据。再试一次。


21006

This receipt is valid, but the subscription is in an expired state. When your server receives this status code, the system also decodes and returns receipt data as part of the response. This status only returns for iOS 6-style transaction receipts for auto-renewable subscriptions.

此收据有效,但订阅处于过期状态。当您的服务器收到此状态代码时,系统还会解码并返回接收数据作为响应的一部分。此状态仅返回自动续订订阅的iOS 6风格交易收据。


21007

This receipt is from the test environment, but you sent it to the production environment for verification.

此收据来自测试环境,但您已将其发送到生产环境进行验证。


21008

This receipt is from the production environment, but you sent it to the test environment for verification. 

此收据来自生产环境,但您已将其发送到测试环境进行验证。


21009

Internal data access error. Try again later.

内部数据访问错误。稍后再试。


21010

The system can’t find the user account or the user account has been deleted.

系统找不到用户帐户或用户帐户已被删除。


 

status | Apple Developer Documentation​​​​​​​


http://www.niftyadmin.cn/n/135368.html

相关文章

STM32整合ATK-01-LORA模块实现定向传输实现三点组网(一主加二从)案例

背景应物联网无网的环境要求,需要使用Lora模块进行组网以此传输数据,本来用了正点原子的Lora模块,以正点的强大资料支持,我本应该非常熟悉这些组网操作了,但硬件调试实在是让我差不多很苦恼,一方面需要不断…

【代码随想录二刷】Day37-贪心-Go

代码随想录二刷Day37 今日任务 738.单调递增的数字 968.监控二叉树 语言:Go 738. 单调递增的数字 链接:https://leetcode.cn/problems/monotone-increasing-digits/ func monotoneIncreasingDigits(n int) int {tmp : strconv.Itoa(n)str : []byte(…

代码随想录 动态规划 || 完全背包基础 518 377

Day38完全背包理论基础完全背包有N件物品和一个最多能背重量为W的背包。第i件物品的重量是weight[i],得到的价值是value[i] 。每件物品都有无限个(也就是可以放入背包多次),求解将哪些物品装入背包里物品价值总和最大。完全背包和…

flutter engine 源码编译之iOS

1、gclient sync --verbose 没反应 或网络错误之类的执行下面命令 export http_proxyhttp://127.0.0.1:7890 export https_proxyhttp://127.0.0.1:7890 在主工程初始化engine: initWithPrecompiledDartBundle 创建 project 切换 engine 制定版本 2.0.2 (2.5.3 d3ea636dc5…

sum-check protocol

sumcheck是一个交互式证明协议,给定域F上的多元多项式g(x1,...,xv)g(x_1,...,x_v)g(x1​,...,xv​),证明者Prover可以向验证者Verifier证明该多项式ggg的遍历求和值等于公开值HHH,即 H∑b1,b2,...,bv∈{0,1}vg(b1,b2,...,bv)H \sum_{b_1,b_2,…

超详细Xshell7免费版安装与连接虚拟机教程

一、下载Xshell 1、首先打开Xshell官网,首页官网地址为: Xshell官网首页地址 官网首页地址有时候会发生变动,若不能通过链接直接进入官网,则在浏览器搜索xshell---->点击下图所示红框处即可 2、进入首页后,点击免…

【3.9】RedisAOF日志、字符串、操作系统进程管理

4. 进程管理 进程、线程基础知识 什么是进程 我们编写的代码只是一个存储在硬盘的静态文件,通过编译后就会生成二进制可执行文件,当我们运行这个可执行文件后,它会被装载到内存中,接着 CPU 会执行程序中的每一条指令,…

序章 高质量C/C++

一、文件结构避免头文件被重复引用&#xff0c;用 #pragma once 进行预处理用 <> 引用标注库头文件&#xff0c;用 "" 引用自定义库头文件C语言头文件只进行函数声明&#xff0c;不进行函数定义&#xff1b;C类的成员可在声明的同时定义二、程序版式每个类声明…