我尝试使用almofire将设备令牌和设备详细信息发布到Web服务。但我得到的回应如下
UserInfo = {NSUnderlyingError = 0x7fba3a590e50 {Error Domain = kCFErrorDomainCFNetwork Code = -1022"(null)"},NSErrorFailingURLStringKey = http://----/register,NSErrorFailingURLKey = http://---/register,NSLocalizedDescription = The无法加载资源,因为App Transport Security策略要求使用安全连接。
在Objective c中,我尝试将所有值设置为httpHeader,在swift中我使用了以下代码..
let params = ["notification_token":deviceToken,"device_identifier":deviceIdentifier,"advertising_identifier":"","model":deviceModel,"os":deviceOS,"os_version":deviceOSVersion,"app_version":deviceAppVersion]
let jsonData = try! NSJSONSerialization.dataWithJSONObject(params, options: [])
request(.POST, urlString, parameters: params,encoding:.JSON).responseJSON
{
response in
if let JSON = response.result.value
{
// print("A JSON Result :\(JSON)")
delegate.API_CALLBACK_RegisterApp!(JSON as! NSDictionary)
}
else
{
delegate.API_CALLBACK_Error(0,errorMessage: response.result.error!.description)
}
}
请帮助我..
答案 0 :(得分:1)
您应该禁用App Transport Security。
您必须在.plist文件中的NSAppTransportSecurity字典下将NSAllowsArbitraryLoads键设置为YES。希望这会有所帮助!
答案 1 :(得分:-1)