飞猪、美团抢到的环球影城被退票,试试官方APP

144 阅读1分钟

9月14号北京环球影城门票正式开售,半小时内平台上中秋期间门票“秒光”,甚至无限次优速通也已售罄。随后有多名网友在社交平台发文称自己在飞猪、美团、抢到的环球门票和优速通,在没有主动申请退票的前提下被退票了,具体是什么原因目前飞猪和美团还没有官方回复。

鉴于首次景区门票的热销情况,随着国庆的临近,如果需要抢购国庆假期的门票,建议到官网渠道APP或小程序购买,下面的程序可以运行试试,根据需要进行调整就可以及时发现门票活动:

    const https = require("https");
    const url = require("url");
    const httpsProxyAgent = require('https-proxy-agent');

    // 要访问的目标页面
    const targetUrl = "https://www.universalbeijingresort.com";
    const urlParsed = url.parse(targetUrl);

    // 代理服务器(产品官网 www.16yun.cn)
    const proxyHost = "t.16yun.cn";
    const proxyPort = "31111";

    // 代理验证信息
    const proxyUser = "username";
    const proxyPass = "password";

    var options = urlParsed;
    var agent = new httpsProxyAgent("http://" + proxyUser + ":" + proxyPass + "@" + proxyHost + ":" + proxyPort);
    options.agent = agent;

    https.request(options, function (res) {
        console.log("got response: " + res.statusCode);
        res.pipe(process.stdout);
    }).on("error", function (err) {
        console.log(err);
    }).end();