what is kCFErrorDomainCFNetwork Code=303

前端 未结 2 1196
旧时难觅i
旧时难觅i 2020-11-29 11:02

I tried to post my textFiled data to Server.but when posting I got this error:

Error: Error Domain=kCFErrorDomainCFNetwork Code=303 \"The operation co

相关标签:
2条回答
  • 2020-11-29 11:41
    kCFErrorHTTPParseFailure      = 303,
    

    The HTTP server response could not be parsed.

    From https://developer.apple.com/documentation/cfnetwork/cfnetworkerrors/kcferrorhttpparsefailure

    0 讨论(0)
  • 2020-11-29 11:49

    Is a parsing error from the server, when its response can't be parsed. You can look up the error codes in the CFNetworkErrors reference.

    Make sure you set HTTPMethod to POST

    0 讨论(0)
提交回复
热议问题