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 profiles search API

Does the Google search API support searches for Google profiles? I looked through the google code pages but could not find it. I only found an API for getting the profile data when you know the username and got permission, but could not find a…
Ivo
  • 3,406
  • 4
  • 33
  • 56
0
votes
1 answer

upload autocomplete xml files to google search engine using c#

I am using the google search engine. I can add autocomplete terms and upload an xml file with the autocompletetion terms. I am trying to auto upload this xml file by a console application or a php file.Is there a way that I can auto-upload this xml…
Elie Elie
  • 9
  • 2
0
votes
1 answer

What to do when a cache and a db index get very different?

I use memcache and datastore indexes with the google search api in gae. A practical problem is how to refresh a datastore index after an entity has been deleted since it appears that the entity is still in the index though it has been deleted. And…
0
votes
1 answer

About Information Gathering using Internet

Now, I have an interesting situation... My goal is to have a software which accepts a person's full name, date of birth, and some other credentials (which they are, is debatable) and extract as much information about him from the internet as…
ArslanW
  • 353
  • 1
  • 10
0
votes
0 answers

Efficient way to show Google images in C# desktop application

So I'm working on a project that requires being able to bring up google images pertaining to the selected item. Right now I'm using the Google Custom Search API to make an image search and getting the results back as a json. I then parse out the…
JWrightII
  • 942
  • 11
  • 26
0
votes
1 answer

How to rebuild indexes for my app?

I'm building indexes that seems to work like this doc = search.Document(doc_id=str(article.key()), fields=[ search.TextField(name='title', value=article.title), search.TextField(name='text', value=article.text), …
0
votes
1 answer

Filter explicit images in google api

Hi i want to filter the explicit images when i run my application(in local and server). how to i restrict the images which are containing adult images what should i do for restrict images using google custom search engine please anyone help…
user1969032
  • 1
  • 1
  • 1
  • 3
0
votes
1 answer

Google Custom Search Filtering

I have been given a set of (approved) requirements and an already approved solution to implement Google Custom Search into an existing website. This website has the following: Jobs Category 1 Category 2 Category 3 Normal pages Category…
Simon Whitehead
  • 63,300
  • 9
  • 114
  • 138
0
votes
1 answer

Google Custom Search API C# 2.0

I need to call Google Custom Search API in my .NET 2.0 project. I cannot use the Google Libraries because those are written in .NET 3.5. I've tried to compile them in .NET 2.0 but there are big dependencies in LINQ and Json.NET 3.5 version of the…
TiagoDias
  • 1,785
  • 1
  • 16
  • 21
0
votes
1 answer

How to search the web with Google Search API without limit

I need a web search be my app and it would be fine to use google web search for. This works in different cases when I do the code by myself or use assemblies like GAPI. The problem is that I ever get an error because of paging the…
Andre Bergmann
  • 59
  • 3
  • 10
0
votes
0 answers

Are documents really 'returned in descending order of the order ID'?

As per the documentation. However, it doesn't actually appear to be the case. For example, here is a list of order_id properties I sent to the log while iterating through a list of ScoredDocuments returned by a search…
HorseloverFat
  • 3,290
  • 5
  • 22
  • 32
0
votes
1 answer

google search in Java

Here's some code I found on StackExchange: public static void main(String[] args) throws Exception { String key="YOUR KEY"; String qry="Android"; URL url = new URL( "https://www.googleapis.com/customsearch/v1?key="+key+…
Monica
  • 389
  • 1
  • 7
  • 19
0
votes
1 answer

How to use the Google Search API and the gSearch jQuery plugin from a userscript?

I'm trying to put together a userscript (for use in Chrome) and I keep hitting a wall. My first goal is to have Scott Reed's gSearch jQuery plugin working on any page via the script. Here is the script I have from shoving snippets and examples, I…
0
votes
1 answer

Need help in constructing code for GAE Search Api

I have created Document, added it to Index and used the GAE Search API to search for a text successfully. Please find the sample code below. search.Document( fields=[search.TextField(name='id', value=id), …
ujjalcal
  • 125
  • 1
  • 1
  • 5
0
votes
1 answer

How to delete documents in search index while using GAE Search API?

I have created a Search Index, populated it with documents and it works as designed. Now I wanted to delete the Documents from the index using the Development Console. While doing that, I am getting error. 'Index' object has no attribute…
ujjalcal
  • 125
  • 1
  • 1
  • 5