gpt4 book ai didi

actionscript-3 - as3crypto 中的 SSL (TLS)

转载 作者:太空宇宙 更新时间:2023-11-03 14:11:22 24 4
gpt4 key购买 nike

我在 Adob​​e Air 应用程序中遇到了一些关于 SSL(HTTPS 调用)的问题。 Adobe 的列表中有一个错误,它与我遇到的问题完全相同:- https://forums.adobe.com/thread/1116924

推荐的解决方案(除非 Adob​​e 解决了这个问题——他们已经 2 年多没有这样做了)是使用 as3crypto 的 SSL。

这里有人可以帮我吗?现在,我的 HTTPService 使用默认内置的 Adob​​e SSL 功能,看起来像:-

var params:Object = getPOSTParameters();
var _httpservice:HttpService = new HTTPService();
_httpservice.url = "https://myserver_url";
_httpservice.resultFormat = "text";
_httpservice.contentType="application/x-www-form-urlencoded";
_httpservice.method = "POST";
_httpservice.concurrency = "multiple";
_httpservice.requestTimeout=600000;
_httpservice.showBusyCursor = false;
_httpservice.addEventListener(IOErrorEvent.IO_ERROR, httpIOError);
_httpservice.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS, httpResponseStatus);
var responder:Responder = new Responder(onResult, onError);
var token:AsyncToken = _httpservice.send(params);
token.addResponder(responder);

我应该如何使用 as3crypto 实现相同的功能?任何示例/代码指针都会非常有用

最佳答案

没有 100% 有效的解决方案,至少我不知道。当我在 Adob​​e Flash 中需要 https 时,我使用了 as3httpclient AS3Crypto 用于实现 TLSSocket 的库。这比自己编写要容易得多。但要注意它有问题并且在某些情况下不起作用。

编辑:有文档可用here对我来说这就足够了,http 和 https 请求之间没有区别(URL 除外)。

关于actionscript-3 - as3crypto 中的 SSL (TLS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29558793/

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