1. 먼저 웹참조를 해준다.
http://api.google.com/GoogleSearch.wsdl
폴더 이름을 예) com.google.api

2.
Google Web APIs (beta)
계정을 만들면 메일로 라이센스 키를 보내준다.
- 하루에
1,000 쿼리를 할수 있다.

3. 라이센스 키를 아래 빨간색 부분을 교체 하여준다.

using com.google.api;

private void Button1_Click(object sender, System.EventArgs e)
{
   GoogleSearchService svc = new GoogleSearchService();
   GoogleSearchResult result = svc.doGoogleSearch("aaSIONhQFHLMAAZ/ie6vwb1PlY5Tkbxi", "검색 할 내용",0,10,true,"",true,"","","");

   string str = "";
   foreach(ResultElement re in result.resultElements)
   {
    str +="Title: "+ re.title+"<br>";
    str +="Summary: "+ re.summary+"<br>";
    str +="URL: "+ re.URL+"<br>";
    str +="==========================<br>";
   }
   Response  .Write  (str);
}

 

발췌 : http://blog.naver.com/miriamme

'.net' 카테고리의 다른 글

닷넷 공부에 꽤 큰 도움이 되는 사이트  (1) 2007.05.03
ASP.NET Spiced: AJAX  (2) 2007.05.03
ASP.NET 파일 업로드 하기  (2) 2007.05.03
비동기식 통신(Asynchronous communication)  (0) 2007.05.03
C#으로 작성하는 웹 서비스  (0) 2007.05.03

+ Recent posts