Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/105.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
iOS应用程序注册错误_Ios_Login_Afnetworking - Fatal编程技术网

iOS应用程序注册错误

iOS应用程序注册错误,ios,login,afnetworking,Ios,Login,Afnetworking,我在尝试使用应用程序im building注册帐户时收到此错误。我可以知道这个错误是什么意思吗?谢谢大家! BaseNetworkManager.m:164 Error Domain=AFNetworkingErrorDomain Code=-1011 "Expected status code in (200-299), got 500" UserInfo=0x16d30560 {NSLocalizedRecoverySuggestion=meta http-equiv="refresh"

我在尝试使用应用程序im building注册帐户时收到此错误。我可以知道这个错误是什么意思吗?谢谢大家!

BaseNetworkManager.m:164 Error Domain=AFNetworkingErrorDomain Code=-1011 
"Expected status code in (200-299), got 500" UserInfo=0x16d30560 
{NSLocalizedRecoverySuggestion=meta http-equiv="refresh" content="0; 
url =websitelink.error.html" 


AFNetworkingOperationFailingURLRequestErrorKey=NSMutableURLRequest: 0x16670d80> { URL: mywebsite/users.json }, NSErrorFailingURLKey=h mywebsite.com/users.json, NSLocalizedDescription=Expected status code in (200-299), got 500, AFNetworkingOperationFailingURLResponseErrorKey=<NSHTTPURLResponse: 0x1669fe20> { URL: mywebsite.com/users.json } { status code: 500, headers {
    Connection = "keep-alive";
    "Content-Length" = 690;
    "Content-Type" = "text/html; charset=utf-8";
    Date = "Fri, 01 May 2015 12:37:44 GMT";
    Server = Cowboy;
    Status = "500 Internal Server Error";
    Via = "1.1 vegur";
    "X-Rack-Cache" = "invalidate, pass";
    "X-Request-Id" = "tyud";
    "X-Runtime" = "5.087065"; } }} 
2015-05-01 20:37:45.002 appname[1677:60b] <BaseNetworkManager.m:165> (null)

服务器正在告诉你

500 Internal Server Error
这意味着服务器出现的问题不是您的错。除非你是负责服务器的人

HTTP 200..299表示ok HTTP 300..399表示查找其他地方 HTTP 400..499表示您的请求有问题。例如404=未找到文件,403=禁止,等等。 HTTP 500..599表示服务器有问题/配置错误


有关更多信息,请参阅。

错误消息实际上说明了一切。你需要问一个问题。嗨,Micheal,我想我写得不对。我已经更新了我的问题。非常感谢。