Questions tagged [google-suggest]

30 questions
75
votes
6 answers

Where is the documentation for the Google Suggest API?

Is there any official documentation on the Google Suggest API? All my searches for the Google suggest API show pages with either outdated info or non-working scripts. For example, at google.com, as soon as you type in "app", Google suggests Apple,…
Mark
  • 759
  • 1
  • 6
  • 4
9
votes
2 answers

How does Google Chrome suggest url completions?

I've learned about Google's (unofficial) suggest API and their search API, which both look really great, but the suggest API doesn't actually suggest navigational completions. On the other hand, in Google Chrome if you start to type for example…
devios1
  • 36,899
  • 45
  • 162
  • 260
6
votes
3 answers

Google Suggest, how it works?

How does Google Suggest work? How does it manage to update the web page on the client so quickly, based on information in a distant Google database? Why does the web page not look ‘jumpy’ if it is being frequently updated?
smallB
  • 16,662
  • 33
  • 107
  • 151
4
votes
2 answers

ngAutoComplete with Google Suggest api

AngularJS has ngAutoComplete that works with Google place perfectly. How can I make it work with Google Suggest API (the suggested keywords when typing in Google Search input box)? Is there something out of the box? If not, what is the best way to…
Dejell
  • 13,947
  • 40
  • 146
  • 229
3
votes
1 answer

How could one create Google-Suggest style search suggestions with Javascript/AJAX?

How could one create Google-Suggest style search suggestions with Javascript/AJAX? References to articles would be much appreciated. I would like to retrieve the "suggestions" from a database. (Essentially just a list of keywords) Thank you.
Sam England
  • 31
  • 1
  • 2
3
votes
1 answer

Google Suggest API : make a query with a prefix

I am playing with http://suggestqueries.google.com/complete/search to make some google suggest queries. It works fine with "mykeyword" & "mykeyword a" or "mykeyword b". I got good results. But I would like to make some queries with a prefix, eg :…
Christophe
  • 71
  • 1
  • 2
2
votes
1 answer

GSA search suggest using ss.js or Ajax Autocomplete for jQuery plugin

I'm trying to implement the search suggest for my gsa search box as is described in http://code.google.com/apis/searchappliance/documentation/612/xml_reference.html#QuerySuggestionServicesuggestProtocol I was having an issue integrating the…
2
votes
1 answer

Add Google suggestions to custom search provider in Firefox

my custom search provider for Firefox is broken. It worked like a charm until very recently. Can somebody show me how to fix it? It looks like this. Google…
2
votes
2 answers

How to create Google like word suggestion

How do I make a word suggestion system in search engine like Google's "did you mean ... " ? Preferably using the vector space model method. I have googled it but didn't find a solution.
william
  • 21
  • 1
  • 2
1
vote
1 answer

Google suggest and auto complete with jquery/ajax in Rails app

I would like to get some ref to use Jquery in Rails app. At the moment, I am stuck to find the things to enable google suggest in text box and autocomplete in Rails app. Any help/suggestions/ref would be of great help.
SDK
  • 11
  • 2
1
vote
1 answer

Google autocomplete suggestion without country name

I am looking for a possibility to get suggestions without country name. I have the following js code: var options = { types: ['(cities)'], componentRestrictions: {country: "us"} }; autocomplete = new…
1
vote
2 answers

Google suggest query using curl

When I am doing request using different browser it is giving me proper xml response. http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=test&gl=US Now I am request above url using curl command but it is giving me 400 error: curl…
RKP
  • 174
  • 2
  • 9
1
vote
3 answers

What is the query limit for Google's Suggest API?

Does anyone know the query limit for this undocumented/unofficial google api?
John Himmelman
  • 21,504
  • 22
  • 65
  • 80
1
vote
1 answer

NSURLRequest with url containing special characters

I'm having the same problem as: NSURL with special characters But tried their solution. Can't get my NSURLRequest to work with åöä characters. If the variable "string" contains åöä the request return null. Also tried with…
Daniel Åkesson
  • 1,330
  • 1
  • 12
  • 21
1
vote
0 answers

jQuery Autocomplete and correction of Keyword - google style

I have an autocomplete box with jQuery Autocomplete Plugin. I have also an autocorrection of my words, what mean, I know if someone types wrong keyword and I am returning the correct one. This what I want now is to display the correction in the way…
Mutatos
  • 1,675
  • 4
  • 25
  • 55
1
2