2015-10-01 88 views
2

我正在尝试使用Alamofire和Mailgun发送电子邮件,但无法使其工作。如何使用Alamofire和Mailgun使用Swift发送电子邮件?

我使用的Mailgun沙箱和Alamofire是corectly增加,但是当我运行此代码:

override func viewDidLoad() { 
    super.viewDidLoad() 
    // Do any additional setup after loading the view, typically from a nib. 


    let key = "my correct key" 

    let parameters = [ 
     "Authorization" : "api:my correct key", 
     "from": "sender email", 
     "to": "destination email", 
     "subject": "Test", 
     "text": "Testing email send" 
    ] 

    let r = Alamofire.request(.POST, "https://api.mailgun.net/v3/<my sandbox>/messages", parameters:parameters) 
     .authenticate(user: "api", password: key) 
     .response { (request, response, data, error) in 
      print(request) 
      print(response) 
      print(error) 
    } 
    print(r) 
} 

我得到这个错误日志:

POST https://api.mailgun.net/v3/sandbox3fecb2a1fd334a66bae85d3ed7d4ea9c.mailgun.org/messages 
2015-10-01 15:58:57.520 Email[7001:912455] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) 
Optional(<NSMutableURLRequest: 0x7f9551722230> { URL: https://api.mailgun.net/v3/sandbox3fecb2a1fd334a66bae85d3ed7d4ea9c.mailgun.org/messages }) 
nil 
Optional(Error Domain=NSURLErrorDomain Code=-1200 "An SSL error has occurred and a secure connection to the server cannot be made." UserInfo={NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x7f9551483e30>, NSLocalizedRecoverySuggestion=Would you like to connect to the server anyway?, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, NSErrorPeerCertificateChainKey=<CFArray 0x7f95514858d0 [0x10f0f17b0]>{type = immutable, count = 3, values = (
0 : <cert(0x7f9551481f00) s: *.mailgun.net i: GeoTrust SSL CA> 
1 : <cert(0x7f9551482990) s: GeoTrust SSL CA i: GeoTrust Global CA> 
2 : <cert(0x7f9551483140) s: GeoTrust Global CA i: Equifax Secure Certificate Authority> 
)}, NSUnderlyingError=0x7f9551708d90 {Error Domain=kCFErrorDomainCFNetwork Code=-1200 "(null)" UserInfo={_kCFStreamPropertySSLClientCertificateState=0, kCFStreamPropertySSLPeerTrust=<SecTrustRef: 0x7f9551483e30>, _kCFNetworkCFStreamSSLErrorOriginalValue=-9802, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9802, kCFStreamPropertySSLPeerCertificates=<CFArray 0x7f95514858d0 [0x10f0f17b0]>{type = immutable, count = 3, values = (
0 : <cert(0x7f9551481f00) s: *.mailgun.net i: GeoTrust SSL CA> 
1 : <cert(0x7f9551482990) s: GeoTrust SSL CA i: GeoTrust Global CA> 
2 : <cert(0x7f9551483140) s: GeoTrust Global CA i: Equifax Secure Certificate Authority> 
)}}}, NSLocalizedDescription=An SSL error has occurred and a secure connection to the server cannot be made., NSErrorFailingURLKey=https://api.mailgun.net/v3/sandbox3fecb2a1fd334a66bae85d3ed7d4ea9c.mailgun.org/messages, NSErrorFailingURLStringKey=https://api.mailgun.net/v3/sandbox3fecb2a1fd334a66bae85d3ed7d4ea9c.mailgun.org/messages, NSErrorClientCertificateStateKey=0}) 
+0

您是否找到解决方案? – Nico

回答

1

问题是,苹果的新应用程序传输安全(ATS)功能旨在提高安全性。由于您的应用试图连接到不支持最新SSL技术(TLSv1.2)的HTTP服务器(api.mailgun.net),ATS会导致您的连接失败并出现此类错误。我有同样的问题。

看到这篇文章:http://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/

如果你不想读它,只需右键点击你的info.plist,选择“打开为” - >“源代码”,然后之前的最后粘贴此<\dict>

<key>NSAppTransportSecurity</key> 
<dict> 
    <key>NSExceptionDomains</key> 
    <dict> 
    <key>api.maillgun.net</key> 
    <dict> 
     <!--Include to allow subdomains--> 
     <key>NSIncludesSubdomains</key> 
     <true/> 
     <!--Include to allow HTTP requests--> 
     <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key> 
     <true/> 
     <!--Include to specify minimum TLS version--> 
     <key>NSTemporaryExceptionMinimumTLSVersion</key> 
     <string>TLSv1.1</string> 
    </dict> 
    </dict> 
</dict> 
+0

我向plist补充说,但得到了同样的错误。 –

相关问题