Questions tagged [google-search-api]

The Google Custom Search API enables licensed API access, via REST calls, to the Google search engine.

The Google Custom Search API exposes the Google search via a REST API. Invoking the service requires an API Key, and allows a fixed number of free calls before charges begin. It is a replacement/re-branding of the previous Google Search APIs which are deprecated as of 2010.

The API can handle requests in JSON or XML format.

Information on the API is available from Google: https://developers.google.com/custom-search/json-api/v1/overview

644 questions
0
votes
0 answers

python google search API - not giving correct results

^ | | this question DOES NOT HAVE an answer yet! I am trying to do google search from python script. xing = "site:xing.com inurl:profile intext:Systemadministrator AND UNIX AND Hamburg" query = urllib.urlencode ( { 'q' : xing } ) response =…
doniyor
  • 36,596
  • 57
  • 175
  • 260
0
votes
1 answer

Google Search Appliance Administration API

We are using the GSA for our companies internal search and it has been configured as a secure URL i.e. https_colon_fwdSlash2_Myhostname.net:8443. I am trying to use the google search appliance Administration API to just connect to the GSA. I am…
Yaba
  • 304
  • 1
  • 3
  • 15
0
votes
1 answer

Can we use Google search API without Authentication?

I want to write a simple Client-side Application that will send a following request to Google http://www.google.com/dictionary/json?callback=a&sl=en&tl=en&q=Hello If you directly click on this link you will get a Json for downloading. What I want to…
Apoorva sahay
  • 1,900
  • 3
  • 28
  • 45
0
votes
1 answer

Java using xpath with google

Before asking this question I tried several different methods and of course tried googling for some direction/answers. I've checked through StackOverflow and can't seem to find a solution. Basically, I want to create a tool that returns data based…
TehBawz
  • 29
  • 1
  • 6
0
votes
4 answers

What's the best method to capture URLs?

I'm trying to find the best method to gather URLs, I could create my own little crawler but it would take my servers decades to crawl all of the Internet and the bandwidth required would be huge. The other thought would be using Google's Search API…
Dallas Clark
  • 4,064
  • 3
  • 30
  • 36
0
votes
1 answer

Getting more than 10 results Google Search API

I am trying to get more than 10 results form google using the search API. I know that the google search API only gives 10 results and you have to call it 10 times to get a hundred but I can't seem to get it working. I tried creating a do while loop…
Daniel o keeffe
  • 51
  • 1
  • 2
  • 8
0
votes
1 answer

How to add content and moreDetailsUrl for Google Search suggest?

I'm using GSA (version 6.14) and we would like to get an auto suggest function on our website. Works fine for basic requests, but it seems the GSA offers more functionality when you would be using user-added results. However, I can find nowhere a…
Wokoman
  • 1,089
  • 2
  • 13
  • 30
0
votes
1 answer

Searching YouTube by video quality, duration, upload date and keywords?

Although I can easily do this on the YouTube.com advanced search page, I can't seem to get it to work with their API. E.g.: From the explorer page Does anyone know the trick to getting this to work?
user230347
  • 71
  • 1
  • 1
  • 3
0
votes
0 answers

Change Google Custom Search Results to Use HTTPS when Result Links are Clicked

I'm trying to force my Google Custom Search results to use HTTPS format instead of HTTP. I've dug through the API documentation, and have been unsuccessful in finding out how to make this change. I remember that the old GCSE let you specify HTTP…
Zach
  • 1
  • 2
0
votes
1 answer

Google search using custom search

I'm requested to write an inverted index, so I would like as a start to write a java program which google searches a word and putting the results into an arraylist. Here's my code: String search = "Dan"; String google =…
DanielY
  • 1,141
  • 30
  • 58
0
votes
1 answer

Setting Center Point in Google Search

I am trying to learn how to use Google Local Search API. I am unable to set the local search center point to Pakistan. Please guide me. Thanks. The line in code with the problem is: localSearch.setCenterPoint("Pakistan, PAK"); The fiddle showing…
user379888
0
votes
1 answer

Filtering Google Site Search results

I know that Google Site Search provide a XML API (paid) to get a better control of results in our website. But I have a website with a lot of articles stored in my database, so I'd like to filter my results (articles) by date, or by category for…
Osny Netto
  • 562
  • 3
  • 9
  • 28
0
votes
1 answer

Cant get original URL of image

I have been trying to use google custom search api so i can download pictures from it and allow users to use it as their "cover" photo. Is this even possible? I can get image search results but they seem to only be thumb nail…
anthonypliu
  • 12,179
  • 28
  • 92
  • 154
0
votes
1 answer

Google Custom Search sort attribute issue

I am having problems using the sort attribute within my GCS request. Whenever I use sort targeting a PageMap element it returns with 0 results. Check it out below. Am I simply missing or misunderstanding something? Request Without…
Aaron Jones
  • 173
  • 1
  • 5
0
votes
1 answer

Retrieve more than 1000 results Google App Engine Search API

I need to be able to retrieve all records available in the index. Seems like 1000 is the limit. Is there something else I can do?
user1791567
  • 1,388
  • 1
  • 16
  • 29