打开URL <u_r_l>时出错:SSL握手失败

时间:2015-11-18 08:48:00

标签: ssl phantomjs

我正在使用phantomJS v2.0.0.

尝试打开此页面: https://play.google.com/apps/publish/&#39;没有成功,得到这个错误:

Error opening url "https://play.google.com/apps/publish/": SSL handshake failed

到目前为止,我已尝试过这些行动:

  1. 添加标记--ssl-protocol=TLSv1
  2. 添加标记--ssl-protocol=any
  3. 添加标记--ignore-ssl-errors=yes
  4. 更改user-agent
  5. 没有解决错误。

    任何帮助/建议?

    我的代码如下所示:

    var page = require("webpage").create();
    
    page.onResourceError = function(resourceError) {
        page.reason = resourceError.errorString;
        page.reason_url = resourceError.url;
    };
    
    
    page.open(
        "https://play.google.com/apps/publish/",
        function (status) {
            if ( status !== 'success' ) {
                console.log(
                    "Error opening url \"" + page.reason_url
                    + "\": " + page.reason
                );
                phantom.exit( 1 );
            } else {
                console.log( "Successful page open!" );
                phantom.exit( 0 );
            }
        }
    );
    

    提前致谢!

0 个答案:

没有答案