1. <small id='MzChn'></small><noframes id='MzChn'>

      <i id='MzChn'><tr id='MzChn'><dt id='MzChn'><q id='MzChn'><span id='MzChn'><b id='MzChn'><form id='MzChn'><ins id='MzChn'></ins><ul id='MzChn'></ul><sub id='MzChn'></sub></form><legend id='MzChn'></legend><bdo id='MzChn'><pre id='MzChn'><center id='MzChn'></center></pre></bdo></b><th id='MzChn'></th></span></q></dt></tr></i><div id='MzChn'><tfoot id='MzChn'></tfoot><dl id='MzChn'><fieldset id='MzChn'></fieldset></dl></div>
      <legend id='MzChn'><style id='MzChn'><dir id='MzChn'><q id='MzChn'></q></dir></style></legend>

    2. <tfoot id='MzChn'></tfoot>

          <bdo id='MzChn'></bdo><ul id='MzChn'></ul>

        如何解决HTTP请求失败!HTTP/1.1 463?

        How solve HTTP request failed! HTTP/1.1 463?(如何解决HTTP请求失败!HTTP/1.1 463?)
          <tbody id='6BobF'></tbody>

            <small id='6BobF'></small><noframes id='6BobF'>

            • <bdo id='6BobF'></bdo><ul id='6BobF'></ul>
              <i id='6BobF'><tr id='6BobF'><dt id='6BobF'><q id='6BobF'><span id='6BobF'><b id='6BobF'><form id='6BobF'><ins id='6BobF'></ins><ul id='6BobF'></ul><sub id='6BobF'></sub></form><legend id='6BobF'></legend><bdo id='6BobF'><pre id='6BobF'><center id='6BobF'></center></pre></bdo></b><th id='6BobF'></th></span></q></dt></tr></i><div id='6BobF'><tfoot id='6BobF'></tfoot><dl id='6BobF'><fieldset id='6BobF'></fieldset></dl></div>

            • <legend id='6BobF'><style id='6BobF'><dir id='6BobF'><q id='6BobF'></q></dir></style></legend>
                <tfoot id='6BobF'></tfoot>

                  本文介绍了如何解决HTTP请求失败!HTTP/1.1 463?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想知道当您遇到错误 HTTP 请求失败时如何提取站点图像!HTTP/1.1 463?该网站会阻止所有 PHP 查询,但不会阻止所有 Internet 服务器.

                  I want to know how to extract an image of a site when you have the error HTTP request failed! HTTP / 1.1 463? The site airs to block all PHP queries, but it does not do so all internet servers.

                  我在 One.com 的服务器上测试了该脚本,该脚本可以运行,但在其他任何地方都无法运行.我收到错误 463,确切地说:HTTP request failed HTTP/1.1 463.

                  I tested the script on One.com's servers that worked but it does not work anywhere else. I get the error 463, to be precise: HTTP request failed HTTP / 1.1 463.

                  这是脚本:

                  <?php
                  header("Content-type: image/gif");
                  
                  $habbo = $_GET['habbo']; // Habbo
                  $habbo2 = $_GET['habbo2']; // Habbo N°2
                  $habbo3 = $_GET['habbo3']; // Habbo N°3
                  $pays = $_GET['pays']; // Pays
                  
                  $image = imagecreatefromgif("bureau_behind.gif"); // Bureau
                  
                  $avatar = imagecreatefromgif("https://www.habbo.".$pays."/habbo-imaging/avatarimage?user=".$habbo3."&action=sit&direction=2&head_direction=2&gesture=sml&size=b&img_format=gif");
                  imagecopy($image, $avatar, 78, -16, 0, 0, 64, 110); // Lien Habbo
                  $avatar = imagecreatefromgif("https://www.habbo.".$pays."/habbo-imaging/avatarimage?user=".$habbo2."&action=sit&direction=2&head_direction=2&gesture=sml&size=b&img_format=gif");
                  imagecopy($image, $avatar, 48, -2, 0, 0, 64, 110); // Lien Habbo n°2
                  $avatar = imagecreatefromgif("https://www.habbo.".$pays."/habbo-imaging/avatarimage?user=".$habbo."&action=sit&direction=2&head_direction=2&gesture=sml&size=b&img_format=gif");
                  imagecopy($image, $avatar, 20, 10, 0, 0, 64, 110);  // Lien Habbo n°3
                  
                  $bureau = imagecreatefromgif("bureau_before.gif"); // Bureau image
                  imagecopy($image, $bureau, 0, 0, 0, 0, 300, 200); // Composition image
                  
                  imagegif($image);
                  imagedestroy($image);
                  ?>
                  

                  提前致谢!

                  推荐答案

                  我试过你正在建的URL,除了没有habbo授权使用他们的图形可能会出现权限问题之外,不会出现463代码使用普通浏览器.

                  I have tried the URL you are building, besides the possibly problematic rights situation if you are not authorized by habbo to use their graphics, the code 463 does not happen with a normal browser.

                  代码 463 是非标准代码.也许 habbo 正在通过用户代理字符串过滤您的请求.您可能想再次尝试 GET,在脚本中使用不同的用户代理标识符:

                  The code 463 is a non-standard code. Maybe habbo is filtering your request by user agent string. You may want to try the GET again, using a different user agent identifier in your script:

                  $httpRequest->setHeaders(array('User-Agent' => 'Mozilla/1.22 (compatible; MSIE 5.01; PalmOS 3.0) EudoraWeb 2')); 
                  

                  或类似的东西(在 http://www.useragentstring.com/ 上查看它们).我直接从这里的 php 文档中获取了这个示例:http://php.net/manual/de/httprequest.setheaders.php

                  or something similar (see them all at http://www.useragentstring.com/). I took this example straight from the php documentation here: http://php.net/manual/de/httprequest.setheaders.php

                  这篇关于如何解决HTTP请求失败!HTTP/1.1 463?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                    <small id='USzmL'></small><noframes id='USzmL'>

                    <i id='USzmL'><tr id='USzmL'><dt id='USzmL'><q id='USzmL'><span id='USzmL'><b id='USzmL'><form id='USzmL'><ins id='USzmL'></ins><ul id='USzmL'></ul><sub id='USzmL'></sub></form><legend id='USzmL'></legend><bdo id='USzmL'><pre id='USzmL'><center id='USzmL'></center></pre></bdo></b><th id='USzmL'></th></span></q></dt></tr></i><div id='USzmL'><tfoot id='USzmL'></tfoot><dl id='USzmL'><fieldset id='USzmL'></fieldset></dl></div>
                  1. <legend id='USzmL'><style id='USzmL'><dir id='USzmL'><q id='USzmL'></q></dir></style></legend>
                      <tbody id='USzmL'></tbody>

                        • <tfoot id='USzmL'></tfoot>
                            <bdo id='USzmL'></bdo><ul id='USzmL'></ul>