我正在尝试使用moon apns向apple发送推送通知,但收到以下错误
{"An unknown error occurred while processing the certificate"}
{"A call to SSPI failed, see inner exception."}这是错误行
_apnsStream.BeginRead(response, 0, 6, ReadResponse, new MyAsyncInfo(response, _apnsStream));我一直在寻找解决方案,但是什么都没有解决?有人能告诉我为什么会出现这个错误吗?
发布于 2015-01-30 01:13:08
尝试替换此行:
_apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Ssl3, false);至
_apnsStream.AuthenticateAsClient(host, certificates, System.Security.Authentication.SslProtocols.Default, false);https://stackoverflow.com/questions/27990909
复制相似问题