0

bing.com を使用して、次のような検索を行うことができます (リンクはここをクリック)

history site:berkeley.edu/about/

API を使用して同じことを試みると、非常に異なる結果が得られます。私が知る限り、検索結果は berkeley.edu でホストされていない Web ページを返します (下を参照)。

これは、Azure に対して行われる HTTP GET 要求です。

https://api.cognitive.microsoft.com/bing/v5.0/search?q=history+site:berkeley.edu/about/&count=10&offset=0

これは私のHTTP GETコードです

    $.ajax({
        url: "https://api.cognitive.microsoft.com/bing/v5.0/search"
        , data: { "q":encodeURI("history+site:berkeley.edu/about/"), "count":"10", "offset":"0" }
        , beforeSend: function(xhrObj){
            xhrObj.setRequestHeader("Ocp-Apim-Subscription-Key","supply-your-key-here");
        }
        , type: "GET",
    })

私が間違っている可能性のあるアイデアはありますか?ありがとう

edit1:私の「問題」は、AJAX が HTTP リクエストを作成する方法に関連しているようです。Firefox ヘッダー プラグインを使用してキーを指定し、これを入力すると ( https://api.cognitive.microsoft.com/bing/v5.0/search?q=history+site:berkeley.edu/about/&count=10&offset =0 ) ブラウザの URL ボックスで、正しい応答が得られます。

API を使用した検索結果

    Environmental Design Library | UC Berkeley Library: A branch of the UC Berkeley Library system, the Environmental Design Library supports the research and teaching of the College of Environmental Design.

Proceedings Template - WORD - ideals.illinois.edu: "(c) ACM, 2007. This is the authors’ version of the work. It is posted here by permission of ACM for your personal use. Not for redistribution.

Trends in metadata practices: A longitudinal study of ...: Trends in metadata practices: A longitudinal study of collection federation. ... A Longitudinal Study of Collection Federation Carole Palmer Oksana ...

http://aerospaceutility.tripod.com/ · GitHub: Clone via HTTPS Clone with Git or checkout with SVN using the repository's web address.

HS RWC Colorado Sample Instructional Units - LiveBinder: Loading Livebinder HS RWC Colorado Sample Instructional Units HS Read Write Communicate Sample Instructional Units provided by the Colorado Department of Education.

Arroyo High School: News Archive: News Archive SIA Awards "As the school year comes to a close, the Students in Action club would like to honor three students for their lasting impact on our ...

English 12 (exp) | Utah Electronic High School: Please be mindful of the fact that this course is not a credit "quick fix." It is a rigorous, college-preparatory class that is both time and labor intensive.

Working SMARTer, not Harder: SOCIAL STUDIES ONLINE ...: SOCIAL STUDIES ONLINE RESOURCES AND LINKS COMPILATION beta List of Social Studies online resources and links to professional development opportunities ...

The Big List -- 20121008 - Grolier: The Big List -- 20121008: 1: EA: http://www.stanford.edu/group/bipolar.clinic/ Stanford Bipolar Disorders Clinic: 2: EA: http://www.mhsource.com/bipolar/

Spreadsheet of Conference Attendees - studylib.net: ÐÏ à¡± á > þÿ ] þÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ...
4

2 に答える 2