HTTPS请求仅在iOS,Ionic 2上失败

问题描述 投票:6回答:4

我有一个Ionic 2应用程序,它调用Spring Boot API将推送通知发送到其他设备。 API使用HTTPS配置。

API POST请求适用于除iOS之外的所有内容。

我在服务器上的SSL证书是自签名的(可能就是这样吗?)。

适用于:

  • 离子发球
  • Android的
  • 邮差
  • 卷曲

这是请求:

public sendNotificationRequest(title: string, action: string, name: string, tokens: any, notifications: boolean) {
    // Check if user turned off notifications
    if(!notifications) {
        return;
    }

    let headers = new Headers({'Content-Type': 'application/json'});
    headers.append('Authorization', 'Basic ' + btoa(this.username_decrypted + ':' + this.password_decrypted));
    let body = this.formObj(tokens, title, action, name);
    console.log(body);

    this.http.post("https://<some-url>",
                    body, { headers: headers }
    ).subscribe((response) => {
        console.log("HTTPS RESPONSE");
        console.log(response);
    }, function(error) {
        console.log("HTTPS ERROR");
        console.log(error);
    });
}

标题响应如下:

response.setHeader("Access-Control-Allow-Origin", "*");
response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");
response.setHeader("Access-Control-Max-Age", "3600");
response.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization");

并收到此错误:

{
 "_body":
    {"isTrusted":true},
    "status":0,"ok":false,
    "statusText":"",
    "headers":{},
    "type":3,
    "url":null
}

Spring Boot API:

@CrossOrigin
@RequestMapping(value="/notifications", method=RequestMethod.POST, consumes=MediaType.APPLICATION_JSON_VALUE, produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<NotificationParent> sendNotifications(@RequestBody NotificationParent objs) {
    ...
    return new ResponseEntity<NotificationParent>(objs, HttpStatus.OK);
}

我假设它有iOS安全问题,但我不知道。

api spring-boot https ionic2
4个回答
3
投票

我认为你的假设是正确的 - 一个iOS安全问题。在iOS中,有一种叫做App Transport Security的东西,默认情况下不允许通过HTTP连接和使用自签名证书的连接。

你必须添加

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSAllowsArbitraryLoads</key>
  <true/>
</dict>

到您项目的Info.plist,以允许您的自签名流量。

有关详细信息,请参阅this answer以及以下链接。

http://blog.ionic.io/preparing-for-ios-9/

https://gist.github.com/mlynch/284699d676fe9ed0abfa

https://developer.apple.com/library/prerelease/content/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33


4
投票

我也有同样的问题。删除WkWebView解决了这个问题。

ionic cordova plugin remove cordova-plugin-wkwebview-engine

更多信息:

https://forum.ionicframework.com/t/ios10-http-requests-blocked/67663/2?u=profitsventure

删除此插件后,我可以通过iOS发出http请求


0
投票

对我来说,修复是使用@ionic-native/http而不是@angular/http

离子原生HTTP文档:https://ionicframework.com/docs/native/http/

这是导致我解决方法https://blog.ionicframework.com/wkwebview-for-all-a-new-webview-for-ionic/的原因


0
投票

对于iOS设备,默认WebViewEngine始终使用CORS,暂时禁用它,将<preference name="CordovaWebViewEngine" value="CDVUIWebViewEngine" />添加到config.xml。然而,降级到UIWebViewEngine的表现不佳。在服务器端解决它是正确的解决方案。

应将HTTP服务器配置为对CORS OPTIONS预检请求进行正确响应。关键点在于Access-Control-Allow-Headers不能为“*”,并且应包含应用中使用的任何自定义标头。以下是我的设置:

Access-Control-Allow-Origin: * Access-Control-Allow-Methods: * Access-Control-Allow-Headers: Access-Control-Allow-Headers, Origin,Accept, X-Requested-With, Content-Type, Access-Control-Request-Method, Access-Control-Request-Headers, MyCustomHeader

© www.soinside.com 2019 - 2024. All rights reserved.