使用Socket.IO时禁用App Transport Security

时间:2015-10-18 17:01:20

标签: ios objective-c socket.io

我正在尝试连接到Socket.IO Server。我正在使用swift库

https://github.com/socketio/socket.io-client-swift

这是我的示例代码

NSString *url = [NSString stringWithFormat:@"myIP:443];


    self.socket = [[SocketIOClient alloc] initWithSocketURL:url opts:nil];

    [socket on:@"connect" callback:^(NSArray* data, SocketAckEmitter* ack) {
        NSLog(@"socket connected");
    }];

    [socket on:@"currentAmount" callback:^(NSArray* data, SocketAckEmitter* ack) {
        double cur = [[data objectAtIndex:0] floatValue];

        [socket emitWithAck:@"canUpdate" withItems:@[@(cur)]](0, ^(NSArray* data) {
            [socket emit:@"update" withItems:@[@{@"amount": @(cur + 2.50)}]];
        });

        [ack with:@[@"Got your currentAmount, ", @"dude"]];
    }];

    [socket connect];

这是我在我的plist中使用的

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>xx.xx.xxx.xxx</key>
            <dict>
                <key>NSIncludesSubdomains</key>
                <true/>
                <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
                <true/>
                <key>NSTemporaryExceptionMinimumTLSVersion</key>
                <string>TLSv1.1</string>
            </dict>
        </dict>
    </dict>

我还在

App Transport Security已阻止明文HTTP(http://)资源加载,因为它不安全。可以通过应用程序的Info.plist文件配置临时例外。

1 个答案:

答案 0 :(得分:1)

然后可能它后来尝试使用您在info.plist文件中未提供的另一个地址连接到API。
作为一个临时的事情,您可以这样做,以消除此传输安全性错误:

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