gpt4 book ai didi

ios - Apple IPv6 $http ionic 拒绝

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:30:32 25 4
gpt4 key购买 nike

几天前我收到了我的应用被拒绝的消息,原因如下:

We discovered one or more bugs in your app when reviewed on iPad and iPhone running iOS 9.3.5 on Wi-Fi connected to an IPv6 network.

Specifically, we found an error message is produced when logging in. We've attached a screenshot for your reference.

Next Steps

Please run your app on a device while connected to an IPv6 network (all apps must support IPv6) to identify the issue(s), then revise and resubmit your app for review.

If we misunderstood the intended behavior of your app, please reply to this message in Resolution Center to provide information on how these features were intended to work.

For new apps, uninstall all previous versions of your app from a device, then install and follow the steps to reproduce the issue(s). For updates, install the new version as an update to the previous version, then follow the steps to reproduce the issue(s).

Resources

For information about supporting IPv6 Networks, please refer to Supporting IPv6 DNS64/NAT64 Networks and About Networking

If you have difficulty reproducing a reported issue, please try testing the workflow described in Technical Q&A QA1764: How to reproduce bugs reported against App Store submissions.

我已经设置了两个 IPv6 网络,一个在时间胶囊中,另一个从我的 MacBook Pro 共享。在 Time Capsule 的网络(完全是 IPv6 网络)中,该应用程序可以正常运行。从 MacBook Pro 共享网络我收到两个结果...当设备连接到此 IPv6 网络并仅配置 DNS 时,该应用程序可以运行,但是当它收到 DNS 和一个格式为 169.254.X.X 的 IP 时,该应用程序崩溃了连接到服务器。

问题是 $http 请求的响应是错误的,而不是成功的。我尝试使用 Ionic $http 和 cordova-http 插件( https://github.com/Switch168/cordova-HTTP#110 ),结果是一样的。我不知道发生了什么,因为我有一个带有 AngularJS 的 Cordova(只有 Cordova,不是 Ionic)项目并且它没有失败。那么,Ionic $http 和 AngularJS $http 有什么区别呢?我不明白有什么区别。

请参阅this image here .

$http 请求示例(使用 Ionic $http 和 cordova-http 插件):

callWs: function(ws, method, data){
var defferer = $q.defer();

if (device.platform == 'Android' || device.platform == 'iOS'){

$window.CordovaHttpPlugin.postJson(url_request,
data_sent,
{"cache-control": "no-cache, private, no-store, must-revalidate",
"Authorization": basic_auth,
"Content-Type": "application/x-www-form-urlencoded; charset=utf-8"
},
function(res) {
defferer.resolve(res.data);
}, function(error) {
defferer.reject(error);
});

} else {

$http({
url: url_request,
method: 'POST',
withCredentials: true,
timeout: HTTPTIMEOUT,
headers: {
'cache-control': 'no-cache, private, no-store, must-revalidate',
'Authorization': basic_auth,
'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
},
dataType : 'json',
data: data_sent
}).then(function (res) {
defferer.resolve(res.data);
}, function (error) {
defferer.reject(error);
});

}

return defferer.promise;

}

最佳答案

考虑到您发布这篇文章已经几个月了,我希望您已经解决了这个问题。我正在回答这个问题,以防其他人像我在寻找解决方案时那样登陆这里。

出现此问题的主要原因是您的服务器出现问题。重要的是,您的应用程序需要在 ipv6 上工作,Apple 才能批准您的应用程序。 (请参阅第一条评论)有一个​​方便的工具可以帮助我确定是否属于这种情况。

http://ipv6-test.com/validate.php

如果是这个问题,解决方法如下:

  1. 将 IPv6 地址添加到您的网络服务器。
  2. 为您的网站添加 AAAA 记录。
  3. 为您的裸域添加 AAAA 记录。
  4. 确保您的 DNS 服务器具有 IPv6 地址。
  5. 如有必要,为您的域名服务器添加 IPv6 胶水。
  6. 为接收邮件服务器添加 IPv6 地址。
  7. 为邮件服务器的 IPv6 地址添加反向 DNS。
  8. 检查您的 SPF 记录。

如果您不熟悉上述任何步骤,请查看 this link.

关于ios - Apple IPv6 $http ionic 拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39343443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com