无法发出服务信号 com.apple.WebKit.WebContent

Could not signal service com.apple.WebKit.WebContent

我使用 iOS 的 Shopify Mobile Buy SDK,但我无法从他们的支付网络视图中获得回调。出于某种原因,警告:

2016-11-25 21:17:25.945267 Drool[3328:799969] Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service

2016-11-25 21:17:25.977316 Drool[3328:799969] Could not signal service com.apple.WebKit.Networking: 113: Could not find specified service

2016-11-25 21:17:26.105947 Drool[3328:799969] [App] if we're in the real pre-commit handler we can't actually add any new fences due to CA restriction

一直出现,我不知道为什么会这样,如果这是问题的原因,你们中有人知道这是什么吗?

我有类似的问题,只出现在 iOS 10.2 上,太糟糕了。 html 无法接收我使用 cookie

传递的值

为 cookie 属性 @"HttpOnly" 设置值 @"false",就像这样:

 NSHTTPCookie *cookieWID = [NSHTTPCookie cookieWithProperties:[NSDictionary dictionaryWithObjectsAndKeys:
                             @"wid" ,NSHTTPCookieName, 
                             WID,NSHTTPCookieValue,
                             @"www.google.com",NSHTTPCookieDomain,
                             @"",NSHTTPCookiePath,
                             @"false",@"HttpOnly",
                             nil]];

您可能需要允许 App Transport Security 访问该资源。尝试按照 .

中所述修改您应用的 Info.plist

如果这个问题发生在任何人的 sim 上,我认为这是 JSON 在 xcode 模拟器的缓存中解析的问题。由 "In the simulator, choose iOS Simulator > Reset Content and Settings" 解决。可以在此处找到更完整的解决方案 https://gist.github.com/riosc/4539602