Questions tagged [google-suggest]

30 questions
0
votes
1 answer

How to decode a non-UTF8 encoded JSON array using Swift?

I'm encountering some weird edge cases when parsing JSON data from the Google search autocomplete API. This is my model for decoding the JSON data: struct suggestOutputModel: Decodable { let query: String let suggestions: [String]? let…
mingwei
  • 93
  • 6
0
votes
1 answer

How can I use the arrow keys in Jquery

I'm trying to mimic the Google suggestions list with this: function el(tid) { return document.getElementById(tid); } function addScript(u) { var head = document.getElementsByTagName('head')[0], sc2 =…
Youss
  • 4,196
  • 12
  • 55
  • 109
0
votes
0 answers

How to handle google suggestions API quota issue with App Engine?

I am building an application that uses google's unofficial suggestion's API. The backend service I created, rests in the google app engine's standard environment with default configurations. It's a Django application that receives a POST request to…
Cagri Uysal
  • 255
  • 3
  • 11
0
votes
0 answers

How to add Google search suggestions in android SearchView?

I am trying to build an android browser. I have a SearchView on the action bar. I recently found a URL where Google respond with search suggestion in a format which is unknown to me. I want to know if this is possible to get this response in the…
Ishan hrx
  • 403
  • 8
  • 19
0
votes
1 answer

How can I guess the two letter language code for a Google suggestions feature?

I've implemented a very simple Google suggestions feature based on what I've found here: http://shreyaschand.com/blog/2013/01/03/google-autocomplete-api/ You don't even have to use an XML parser: + (NSArray *)suggestionsForQuery:(NSString *)query…
Vulkan
  • 1,004
  • 16
  • 44
0
votes
1 answer

Is the unpublished Google Suggest Queries API VALID for use

Does anyone know if it's legal to use Google suggestqueries in a commercial product ? As I'm using the open stream of the ajax jsonp request https://suggestqueries.google.com/complete/search?callb.... in searchengine based product.
0
votes
1 answer

Google suggestion search for more than one word

i'm working with google-suggestion and i'm trying to get all suggestion. I found and example here
javascript code $(function () { $("#search").autocomplete({ source: function…
andy
  • 33
  • 5
0
votes
1 answer

Google Suggest - What determines the sort order of suggested queries on google?

How is this sort order determined? Is it ranked by popularity, number of results, or a mysterious google algorithm? Does there algorithm take into account the search popularity of a query (using google-trends data or something)? Edit: I found a news…
John Himmelman
  • 21,504
  • 22
  • 65
  • 80
0
votes
0 answers

implementing autocorrect affecting another application

I saw many posts about making the autocomplete to the current autocomplete text view but I need to make the autocomplete to another application for example , I want to use my program/service to write inside skype or facebook or browser how can I…
0
votes
1 answer

How can i get more than 10 results from the google suggest api

I would like to get more than 10 results from this API: http://suggestqueries.google.com/complete/search?output=toolbar&q=TERM . Is that possible?
SG 86
  • 6,974
  • 3
  • 25
  • 34
0
votes
1 answer

Cannot make a get request from the back end to google's Query Suggestion Service

Why can't I make a get request from the back end to google's Query Suggestion Service using Java? I want to make a get request to this service Google: Query Suggestion Service /suggest Protocol. so that I can get a response which would list…
user1809913
  • 1,785
  • 1
  • 14
  • 25
0
votes
2 answers

Transliteration and fuzzy search, like Google suggestions

I need to do a fuzzy search with transliteration of the characters, for example: I have an ASP.NET application, database, which has a table with a list of Spanish words (200,000 entries), I also have a page with an input field. The point is that I…
0
votes
1 answer

Failed ajax call from chrome extension

I am trying to make an ajax call to the googlesuggest page that generates a xml. I use a small hack that seems to work and is documented here The code is this: $.ajax({ url: 'https://suggestqueries.google.com/complete/search', data: { …
Edeph
  • 732
  • 2
  • 12
  • 29
0
votes
1 answer

How to use google suggest api with java application

I want to use the google-suggest-api in my Java application. Can i call http://google.com/complete/search?q=Test&output=toolbar via a Java application? Please give me an example. Updated. Below code is work in my java application but when I use in…
-5
votes
2 answers

VPC networking connection on GCP

Let me brief out question agian: Let say their are 3 VPC network (default)VPC1,VPC2.VPC3 1. VPC1 have two subets 10.128.0.0/20& 10.10.1.0/24 2. VPC2 subnets: 192.168.0.0/24 3. VPC3 subnets:10.10.2.0/24 Created 2 VM's instances: VM1 assigned two…
1
2