8

Microsoft 自己的新 Bing API 的 PHP 示例不起作用。我尝试了很多方法,它只是显示:

服务器错误
401 - 未经授权:由于凭据无效,访问被拒绝。
您无权使用您提供的凭据查看此目录或页面。

官方文档中给出的示例编码如下,它在

'proxy' => 'tcp://127.0.0.1:8888',  

我 100% 确定我的密钥是正确的,当我在浏览器 url 中输入它时它工作正常,即

https://api.datamarket.azure.com/Bing/SearchWeb/Web?Query=%27love+message%27

(您需要将 API 密钥作为您的密码和用户名可以是任何东西)

<html>
    <head>
        <link href="styles.css" rel="stylesheet" type="text/css" />
        <title>PHP Bing</title>
    </head>
    <body>
        <form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
            Type in a search:

            <input type="text" id="searchText" name="searchText"
                value="<?php
                        if (isset($_POST['searchText']))

                                   {
                            echo($_POST['searchText']);
                        }
                        else
                        {
                            echo('sushi');
                        }
                       ?>"
            />

            <input type="submit" value="Search!" name="submit" id="searchButton" />
            <?php
                if (isset($_POST['submit']))
                {
                    // Replace this value with your account key
                    $accountKey = 'BKqC2hIKr8foem2E1qiRvB5ttBQJK8objH8kZE/WJVs=';

                    $ServiceRootURL = 'https://api.datamarket.azure.com/Bing/Search/';

                    $WebSearchURL = $ServiceRootURL . 'Image?$format=json&Query=';

                    $context = stream_context_create(array(
                        'http' => array(
                            //'proxy' => 'tcp://127.0.0.1:8888',
                            'request_fulluri' => true,
                            'header' => "Authorization: Basic " . base64_encode($accountKey . ":" . $accountKey)
                        )
                    ));

                    $request = $WebSearchURL . urlencode( '\'' . $_POST["searchText"] . '\'');

                    echo($request);

                    $response = file_get_contents($request, 0, $context);

                    print_r($response);

                    $jsonobj = json_decode($response);

                    echo('<ul ID="resultList">');

                    foreach($jsonobj->d->results as $value)
                    {
                        echo('<li class="resultlistitem"><a href="' . $value->MediaURL . '">');

                        echo('<img src="' . $value->Thumbnail->MediaUrl. '"></li>');
                    }

                    echo("</ul>");
                }
            ?>
        </form>
    </body>
</html>

我已经尝试过 google API 和 Yahoo API,没有一个比这更难。

4

4 回答 4

9

经过几天与微软技术支持的争论,他们承认它没有用

这是在 BING API 中使用 CURL 执行此操作的正确编码,应用 CURL 方法而不是 file_get_contents 无法将正确的身份验证信息从 Linux 客户端传递到 BING 服务。

<html>
    <head>
        <title>PHP Bing</title>
    </head>
    <body>
        <form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
            Type in a search:

            <input type="text" id="searchText" name="searchText"
                value="<?php
                        if (isset($_POST['searchText']))

                                   {
                            echo($_POST['searchText']);
                        }
                        else
                        {
                            echo('sushi');
                        }
                       ?>"
            />

            <input type="submit" value="Search!" name="submit" id="searchButton" />
            <?php


                if (isset($_POST['submit']))
                {

            $credentials = "username:xxx";

                $url= "https://api.datamarket.azure.com/Bing/SearchWeb/Web?Query=%27{keyword}%27";        
                $url=str_replace('{keyword}', urlencode($_POST["searchText"]), $url);
                $ch = curl_init();

            $headers = array(
                    "Authorization: Basic " . base64_encode($credentials)
                );

                $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, $url);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); 
                curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,5);
                curl_setopt($ch, CURLOPT_FAILONERROR, true);
                curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
                curl_setopt($ch, CURLOPT_AUTOREFERER, true);
                curl_setopt($ch, CURLOPT_TIMEOUT, 10);
            curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);

                $rs = curl_exec($ch);
            echo($rs);
                curl_close($ch);
                return $rs;

        }

            ?>
        </form>
    </body>
</html>
于 2012-07-18T02:52:09.327 回答
3

我不得不添加

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

为了使它工作,至少在我的本地副本(WAMP)中。

希望对您有所帮助,我整天都在搞砸这个。

于 2012-08-22T14:37:16.160 回答
2
$WebSearchURL = $ServiceRootURL . 'Image?$format=json&Query=';  

这是问题的一部分

这不会给出 bing 正在寻找的 url

e.g. https://api.datamarket.azure.com/Bing/SearchWeb/Web?Query=%27love+message%27 

这将是

https://api.datamarket.azure.com/Bing/Search/Image?$format=json&Query=%27love+message%27 

而您想要一个网络而不是图像搜索,并且格式和其他参数应该在查询之后

“图像”应该是“网络”

我花了 3 天的时间试图让它发挥作用。

于 2012-07-17T21:13:27.007 回答
0

我刚刚发布了一个如何使用Unirest 库连接到 Bing/Azure API 的示例:https ://stackoverflow.com/a/20096151/257815

于 2013-11-20T12:39:40.437 回答