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

learn more… | top users | synonyms

1
vote
0answers
19 views

download text of an article in google news

I'd like to do some natural language processing (nlp) mining based on news. google has a smart way of extracting a useful text from news articles. that's the text it displays in google news. is there ...
0
votes
0answers
24 views

Get top most computed search result via Google search API

For many queries Google provides instant answers in one liner as the top most result. Via Google search API the response seems to return only normal results in items array but how to retrieve the ...
1
vote
0answers
23 views

How to use Google API to Query Index folders using Python

I am new to programming and currently learning Python. I wanted your help to figure if there is a way to query/traverse/search inside index folder returned by a Google query using Python. Let me ...
-1
votes
0answers
23 views

google search API : how to get number of reviews about a restaurant?

Hello please is there a way to get the total number of reviews about a single restaurant using google search API? (in the json response there is just the rating about the restaurant!) I tried to ...
0
votes
0answers
34 views

Google Search API: Loading all datastore data into document builder for full text search on all records

I have been following the tutorial regarding the Google Search API at https://developers.google.com/appengine/docs/java/search/overview. The information I have found is very clear on how to build ...
0
votes
0answers
26 views

How to download images from search api and add them to your site

I was very curious on how http://thumb.it handles their images. When you get an opinion, it allows you to search online for an image, and it automatically uses it as your cover photo for your ...
0
votes
1answer
67 views

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 ...
0
votes
2answers
69 views

Differences between search tools - Solr, Bing and Google? [closed]

I am interested to know how solr search differs from what Bing and Google Search APIs offer?
0
votes
0answers
32 views

execute google image search several times in a page

I want to write a web page which can generate images get from google search dynamically. The search terms for these images are different, so I need to execute google search several times, while I ...
0
votes
0answers
21 views

How to remove results from search?

We have a website that uses google custom search api (found here:https://developers.google.com/custom-search/docs/xml_results?hl=en ) for searching pages found in our website. The problem is some ...
2
votes
2answers
111 views

Can we use Google Custom Search API cheaper? [closed]

We need to have a Keyword Tracker for Google. We actually have, however the cost is an issue. There's the SheerSEO which is based on a tracker like that and they seem to provide Keyword Tracking ...
0
votes
0answers
32 views

Google custom search api returning total number not correct?

I'm using javascript REST + Google custom search api to do some search work. First I tried to search the keyword "google" and I got a total result numbre of 7350000000: search url: ...
1
vote
2answers
179 views

How do I download 100 images using Google Custom Search API for use with Processing?

A friend and I are trying to create a Photomosaic generator in Processing. We want to be able to pull 100 images from Google using the Custom Search API, restricting the image size and dominant color, ...
0
votes
1answer
77 views

How get result of last 2 hour from google using python?

I have a search topic "leo messi". I want to get all blog about "leo messi" posted in last 2 hours. Now i am stuck here.This code not filtering blog and time import urllib import json as m_json ...
0
votes
1answer
19 views

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 ...
0
votes
0answers
44 views

Google Custom Search API: Search for “site:”

Is there any way to search for "site:" in google's custom search API? I've tried these but got no results: ...
0
votes
1answer
110 views

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?
0
votes
0answers
44 views

Gathering sentences from a word list

I am looking for a quick scrape of sorts (which at one time I might have done directly, but now think I have to use one of Google's APIs.) It is easier to show by example. The input would be a list ...
0
votes
0answers
42 views

Is there a sandbox mode for Google's Custom Search API?

I've hit my daily limit just from testing it. Seems a bit unfair since it's for an academic project and hasn't been used by any of the public or anything...
1
vote
1answer
74 views

python appengine unicodeencodeerror on search api snippeted results

I'm crawling pages and indexing them with appengine search api (Spanish and Catalan pages, with accented characters). I'm able to perform searches and make a page of results. Problem arises when I ...
1
vote
0answers
70 views

How can I search documents from google using C# code?

I am currently working on document search in google. I don't want to do HTML parsing at all. However looking for some api which search google documents from internet. Basically I do have one ...
0
votes
1answer
151 views

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 ...
0
votes
1answer
34 views

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 ...
1
vote
0answers
61 views

Number Found Accuracy on Search API Affecting Cursor Results

When using the google app engine search API, if we have a query that returns a large result set (>1000), and need to iterate using the cursor to collect the entire result set, we are getting ...
0
votes
1answer
31 views

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 ...
3
votes
1answer
117 views

SearchAPI and Hibernate unexpected end of subtree

I've the following entity @Entity public class Task { private List<TaskParameter> taskParameters = Collections.emptyList(); @ElementCollection(fetch = FetchType.EAGER) ...
0
votes
0answers
43 views

google site search target

When clicking one of the search result link I would like the link to open in the same window if possible instead of in a new tab ? <script> (function () { var cx = 'XXXXX'; ...
0
votes
0answers
227 views

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 ...
0
votes
2answers
315 views

Call function after loading google custom search results?

I basically need to run some jQuery code after the search results get rendered on my page. I can use either the v1 code: <div id="cse" style="width: 100%;">Loading</div> <script ...
0
votes
1answer
77 views

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), ...
0
votes
0answers
71 views

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 ...
0
votes
0answers
67 views

Google API for searching price of product

I need the google API which can help me in finding the price of particular product.I am using https://www.googleapis.com/shopping/search/v1/public/products?key= and calling it from Java client and ...
2
votes
0answers
38 views

How to get available search results per given time from google?

I would love to get how many search results are available per given time (say yesterday, or last week) from Google, i want something more "accurate" than Google trends, for a project i am building, so ...
-1
votes
1answer
181 views

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 ...
0
votes
1answer
164 views

how to start a browser with a Google image search query in android

I was wondering how to start a Browser with a Google image search query "search images by text". For example user can select a certain word or phrase and click a button and the activity will start the ...
0
votes
1answer
556 views

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 ...
0
votes
0answers
66 views

Google Custom Search API count different from google.com

This question for programmers who worked with the google custom search API. Anyone know why the custom search query 'site:example.com' returns less results than google.com search, using the same ...
0
votes
0answers
26 views

How to directly redirect to a page if a match is found in Google custom search instead of search result page?

I am implementing Google custom search on a website, while searching for other Google custom search implementation on web I came through www.mustseeindia.com, on this I searched for "Mumbai" and it ...
0
votes
0answers
215 views

Google Spell API and TinyMCE

I just successfully implemented the spell checking plugin for TinyMCE using the instructions here. I got a bit scared, though, by this ending paragraph. I've had some trouble finding good ...
0
votes
2answers
736 views

how to get ALL google search results using api

I need to get google search results for query. But using something like this $query = 'Nikita Platonenko'; $url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=".urlencode($query); ...
0
votes
0answers
49 views

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 ...
2
votes
3answers
80 views

should I use .rank or .order_id?

accessing order_id property of a ScoredDocument object in SearchResults object generates following error in log: DeprecationWarning: order_id is deprecated; use rank instead ...
1
vote
0answers
246 views

Google Custom Search API issue: up to 100 queries

I want to use Google Custom Search API https://developers.google.com/custom-search/v1/overview to search images by keywords. At main page they say: Usage is free for all users, up to 100 queries per ...
0
votes
0answers
103 views

Can I extract google custom search results to determine output in a .NET site?

I'm working on have a property listing asp.NET website and the current search function is pretty crappy. I want to know if I can use the Google Custom Search API to extract the results but still ...
0
votes
0answers
93 views

Web Search API - Getting images along with search results

For my application, I want to use a Web Search API (like Google, Bing or some other API) to display the search results. Along with the results, I want to display the relevant image from that URL. One ...
0
votes
0answers
158 views

how to make more than 100 queries with Google Custom search API

According to this post, I'm querying google in order to get some results from my java program. It is working fine! The problem is, apparently they are not allowing more than 100 queries/day, and I ...
0
votes
1answer
166 views

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( ...
1
vote
0answers
197 views

Google Site Search API - Filtering using multiple attributes

I was wondering is it possible to filter Google custom search results using multiple pagemap attributes? For example, I want to filter results using meta tags "category_name" and "site_section". I ...
1
vote
1answer
599 views

VB.net Extract Result From Goolgle Search

I want to extract google search result, im using the Google.API.Search, i tried to extract result by this code: Dim client As New GwebSearchClient("http://www.google.co.il") Dim results As IList(Of ...
0
votes
0answers
58 views

How to gauge or compare relative frequency of arbitrary words without a search engine API?

More than a few times I've wanted to programmatically pick the better of two words or phrase using frequency of use on the Internet as a heuristic. The obvious way, and the way to do it manually, is ...

1 2 3 4