欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

bugly 后台查到的各种NSURLError错误对照表

程序员文章站 2024-03-23 10:35:46
...
enum : NSInteger {
    NSURLErrorUnknown = -1,   未知的错误
    NSURLErrorCancelled = -999,请求被取消
    NSURLErrorBadURL = -1000, 请求的URL错误,无法启动请求
    NSURLErrorTimedOut = -1001, 请求超时
    NSURLErrorUnsupportedURL = -1002,不支持的URL Scheme
    NSURLErrorCannotFindHost = -1003, UTL的host名称无法解析,即DNS有问题
    NSURLErrorCannotConnectToHost = -1004, 链接host 失败
    NSURLErrorNetworkConnectionLost = -1005, 链接过程被中断
    NSURLErrorDNSLookupFailed = -1006,  同-1003
    NSURLErrorHTTPTooManyRedirects = -1007, 重定向次数超过限制
    NSURLErrorResourceUnavailable = -1008,无法获取所请求的资源
    NSURLErrorNotConnectedToInternet = -1009,断网状态
    NSURLErrorRedirectToNonExistentLocation = -1010, 重定向到一个不存在的位置
    NSURLErrorBadServerResponse = -1011,服务器返回数据有误
    NSURLErrorUserCancelledAuthentication = -1012,身份验证请求被用户取消
    NSURLErrorUserAuthenticationRequired = -1013,访问资源需要身份验证
    NSURLErrorZeroByteResource = -1014,服务器报告URL数据不为空,却未返回任何数据
    NSURLErrorCannotDecodeRawData = -1015,响应数据无法解码为已知的内容编码
    NSURLErrorCannotDecodeContentData = -1016,请求数据存在未知内容编码
    NSURLErrorCannotParseResponse = -1017, 响应数据无法解析
    NSURLErrorAppTransportSecurityRequiresSecureConnection = -1022, https 证书问题
    NSURLErrorFileDoesNotExist = -1100, 请求的文件路径上文件不存在
    NSURLErrorFileIsDirectory = -1101, 请求的文件只是一个目录,而非文件
    NSURLErrorNoPermissionsToReadFile = -1102, 缺少权限法务读取文件
    NSURLErrorDataLengthExceedsMaximum = -1103, 资源数据大小超过最大限制
    NSURLErrorSecureConnectionFailed = -1200,   安全链接失败
    NSURLErrorServerCertificateHasBadDate = -1201, 服务器证书过期
    NSURLErrorServerCertificateUntrusted = -1202, 不受信任的根服务器签名
    NSURLErrorServerCertificateHasUnknownRoot = -1203, 服务器证书没有任何跟服务器签名
    NSURLErrorServerCertificateNotYetValid = -1204, 服务器证书还未生效
    NSURLErrorClientCertificateRejected = -1205, 服务器证书被拒绝
    NSURLErrorClientCertificateRequired = -1206,需要客户端证书来验证SSL链接
    NSURLErrorCannotLoadFromNetwork = -2000, 请求只能加载缓存中的数据,无法加载网络数据
    NSURLErrorCannotCreateFile = -3000, 下载操作无法创建文件
    NSURLErrorCannotOpenFile = -3001,下载操作无法打开文件
    NSURLErrorCannotCloseFile = -3002,下载操作无法关闭文件
    NSURLErrorCannotWriteToFile = -3003,下载操作无法写文件
    NSURLErrorCannotRemoveFile = -3004,下载操作无法删除文件
    NSURLErrorCannotMoveFile = -3005,下载操作无法移动文件
    NSURLErrorDownloadDecodingFailedMidStream = -3006,下载操作过程中,对编码文件进行解码时失败
    NSURLErrorDownloadDecodingFailedToComplete = -3007,下载操作在下载完成后,对编码文件先进性解码时失败
    NSURLErrorInternationalRoamingOff = -1018, 漫游时请求数据,但是漫有开关已关闭
    NSURLErrorCallIsActive = -1019,EDGE GPRS 等网络不支持电话和流量同时进行,当正在通话过程中,请求失败
    NSURLErrorDataNotAllowed = -1020,手机网络不允许链接
    NSURLErrorRequestBodyStreamExhausted = -1021, 请求的body流被耗尽
    NSURLErrorBackgroundSessionRequiresSharedContainer = -995, 后台会话需要共享容器
    NSURLErrorBackgroundSessionInUseByAnotherProcess = -996, 后台会话正在被另一个进程使用
    NSURLErrorBackgroundSessionWasDisconnected = -997 后台会话断开
};
相关标签: bug

上一篇: WebSocket协议

下一篇: 函数模板引入