IOS用Shopify Mobile Buy SDKを使用していますが、支払いWebビューからコールバックを取得できません。何らかの理由で警告:
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
表示され続けると、なぜこれが起こっているのか分かりませんが、これがこの問題の原因である場合、あなたは誰がこれが何であるか知っていますか?
値を設定@"false"
Cookieプロパティ@"HttpOnly"
、 ちょうどこのような :
NSHTTPCookie *cookieWID = [NSHTTPCookie cookieWithProperties:[NSDictionary dictionaryWithObjectsAndKeys:
@"wid" ,NSHTTPCookieName,
WID,NSHTTPCookieValue,
@"www.google.com",NSHTTPCookieDomain,
@"",NSHTTPCookiePath,
@"false",@"HttpOnly",
nil]];
App Transport Securityがリソースにアクセスできるようにする必要がある場合があります。アプリのInfo.plist
説明どおり ここ 。
この問題が誰かのsimで発生した場合、xcodeシミュレーターのキャッシュでのJSON解析の問題だと思います。 「シミュレータで、iOSシミュレータ>コンテンツと設定をリセット」を選択して解決しました。より完全な解決策はここにあります https://Gist.github.com/riosc/4539602
私は同様の問題を抱えていましたが、これはiOS 10.2でしか見られません。 htmlはcookieを使用して渡した値を受け取ることができません