2

我想调用一个 URL 并希望通过使用 PHP 来获取结果file_get_contents(我知道 CURL,但首先我想尝试使用file_get_contents)。在我的情况下,它是对商店系统的请求magento,它需要以前登录到后端。

如果我在浏览器中手动执行 URL,就会出现正确的页面。如果我使用 发送 URL file_get_contents,我也会登录(因为我将 Cookie 添加到请求中),但每次我只获得仪表板主站点时,可能会导致重定向。

我试图模拟相同的 http 请求,因为我的浏览器将它发送出去。我的问题是:是否有可能直接发送相同的标头数据(Cookie、Session-ID 等)作为参数而file_get_contents无需手动序列化?

这是一个常见的 PHP 问题,基本脚本是:

$postdata = http_build_query(
    array(
        'var1' => 'some content',
        'var2' => 'doh'
    )
);

$opts = array('http' =>
    array(
        'method'  => 'POST',
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'content' => $postdata
    )
);

$context  = stream_context_create($opts);

$result = file_get_contents('http://example.com/submit.php', false, $context);

就我而言,代码是:

        $postdata = http_build_query(
            array
            (
                'selected_products' => 'some content',
            )
        );

        $opts = array('http' =>
            array
            (
                'method'  => 'POST',
                'header'  => "Content-type: application/x-www-form-urlencoded; charset=UTF-8\r\n".
                             "Cookie: __utma=".Mage::getModel('core/cookie')->get("__utma").";".
                             "__utmz=".Mage::getModel('core/cookie')->get("__utmz").
                             " __utmc=".Mage::getModel('core/cookie')->get("__utmc").';'.
                             "adminhtml=".Mage::getModel('core/cookie')->get("adminhtml")."\r\n".
                             "X-Requested-With: XMLHttpRequest\r\n".
                             "Connection: keep-alive\r\n".
                             "Accept: text/javascript, text/html, application/xml, text/xml, */*\r\n".
                             "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0",
                'content' => $postdata
            )
        );

$context  = stream_context_create($opts);
var_dump(file_get_contents($runStopAndRemoveProducts, false, $context ));

结果应该是我将通过手动调用 URL(“请选择一些产品”作为纯文本)在浏览器中得到的相同错误消息,但响应是一个完整的仪表板主页作为 html 网站。

我正在寻找这样的脚本。我想确保所有参数都是自动设置的,而无需手动构建 cookie 字符串和其他参数:)

file_get_contents('http://example.com/submit.php', false, $_SESSION["Current_Header"]);

编辑:我发现了错误,需要两个特殊的 get-Parameter (isAjax=1form_key= Mage::getSingleton('core/session', array('name' => 'adminhtml'))->getFormKey())。在我的情况下,form_key导致错误。但是丑陋的 Cookie 字符串已经存在 - 仍在寻找更漂亮的解决方案。

4

1 回答 1

0

对我来说,这看起来就像您正在尝试为您可以更优雅、正确、完整记录的方式编写一些技巧。请查看 Magento API。

如果您想删除产品(或做任何其他事情):

http://www.magentocommerce.com/api/soap/catalog/catalogProduct/catalog_product.delete.html

您将得到适当的回复,以了解事情是否成功。如果 API 无法完成某些事情,那么您可以根据需要扩展/破解它。

要开始使用,您将需要一个 API 用户/通行证并熟悉 SOAP。Magento 文档中的示例就足够了。祝你好运!

于 2014-04-28T08:44:03.453 回答