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
1 answer

google custom search add annotation programmatically

when adding annotation programatically ,refer to http://code.google.com/intl/en/apis/customsearch/docs/api.html#create_annos , can i assign "id" to each annotation so later on, when i need to delete it i can just delete by the id instead of…
cometta
  • 35,071
  • 77
  • 215
  • 324
0
votes
2 answers

Google Search API - "No results" text

Is anybody have an idea how can I change the "No results" to some other text... I have this code: function OnLoad() { // Create a custom search control that uses a CSE restricted to code.google.com var customSearchControl = new…
BorisD
  • 2,231
  • 5
  • 25
  • 35
0
votes
4 answers

How to add all of the websites Google has indexed to a Google Custom Search

I want to add all of the websites indexed by Google in a Google custom search. If I try to add sites manually from the Google custom search, it would take more than my life to include all of them.Is there any way I can do that with any trick? Thanks…
user379888
0
votes
1 answer

Making Google Custom Search display results on a new tab

I am developing a website which has custom Google search bar embedded into it. My client wants a functionality that when a user searches something into that search box, a new page should open where he should be shown the result of his search. The…
user379888
0
votes
1 answer

Error in parsing Google Suggest API in Japanese

When i search "ア" Data From Google Suggest API And my current language in device is English. Then I am getting below response in iPhone device.
Smart Developer
  • 72
  • 2
  • 10
0
votes
1 answer

google search api issue

I implemented google search API for shopping into my project, but as for now the request returns json obect with response code 200 (OK) and returns no items(there is even no "items" field). When i type my request in browser, but change GAN for…
John Smith
  • 831
  • 5
  • 19
  • 37
0
votes
1 answer

Best solution to index and search text on internal pages?

I have a high-traffic news website that I need to add a search feature to. I need something that's free or cheap, can add new news stories immediately to search results, handle high traffic, and allow for customized styling of results. I looked at…
dallin
  • 8,775
  • 2
  • 36
  • 41
0
votes
1 answer

How to Asynchronously add a list of Documents to an Appengine Search API Index?

I am experimenting with Appengine (python) SearchAPI. I have created a list of documents and am correctly adding this list of documents to the Search API Index. It works great, but my code has to wait for this to happen (synchronously). My business…
0
votes
1 answer

Google App Engine Python Search API Document Error

I'm using the Python 1.6.6 SDK and having trouble getting the search API to initialise a new Document: from google.appengine.api import search def index_document(document_id, some_string): return search.Document( doc_id=document_id, …
notreadbyhumans
  • 607
  • 9
  • 17
0
votes
2 answers

Autocomplete API for google custom search

I am trying to add autocomplete to a google custom search that that I have recently installed. I managed to get the search to work by sending a request to googleapis.com/customsearch/v1 but now I am having trouble getting the autocomplete to work…
-1
votes
0 answers

How to use Google's Gen AI Multi-turn search API in python

Currently I am using Google Discovery engine regular search but I want to use this multi-turn search which saves the context of my previous queries but I am unable to find any documentation regarding how to implement it in python, link:…
-1
votes
1 answer

Using google search api to only give results from certain websites

I'm making a react app that uses the google search api allows users to submit websites that they want their search results to come from. I'm having trouble with getting results only from those websites. I've tried using the sitesearch parameter in…
NP2001
  • 1
-1
votes
1 answer

programmable search engine returns 400 Request contains an invalid argument

When I call this url from Java code, postman or a web…
kaka
  • 597
  • 3
  • 5
  • 16
-1
votes
2 answers

How do I use ColdFusion to return the top ten Google results?

I need to return the top ten Google results, and want to use ColdFusion to do this. I haven't used ColdFusion before so I don't know where to start. Any suggestions on what tags or functions to use, and any links to documentation on performing…
-1
votes
1 answer

google shared drive search api

i have lots of google shared drive and many content in it , currently trying to search some query and i got only limited result , but when i am trying to search those query in drive i got many results. response through API : - res.json my code is :…
1 2 3
42
43