I am trying to implement eBay autosuggest in an opera extension using jQuery autocomplete.

eBay's JSON url is: http://anywhere.ebay.com/services/suggest/?v=jsonp&q=test

and this is what it gives:

["test",["tube tester","testosterone","battery tester","tester","diamond tester","testoni","one touch ultra test strips","testors"]]

but it doesn't parse anything. What I'm I missing?

link|improve this question

Can you provide a link to the api documentation? – Andrew Whitaker Dec 9 '11 at 21:43
I haven't found an actual api documentation for this purpose but that is the URL where you can see the json results yourself. Here is the path for the XML too: anywhere.ebay.com/services/suggest/?v=xml&q=test – Jonathan Dec 9 '11 at 21:51
1  
You can't use an arbitrary URL as a JSONP source--the service you're calling must be configured to support JSONP. – Andrew Whitaker Dec 9 '11 at 21:54
1  
@Andrew: It does. If you call the service directly (using the link above) you will get a response in JSONP format. – legendofawesomeness Dec 9 '11 at 22:04
@AndrewWhitaker I believe its not an arbitrary URL when you set it's format as JSONP and you get results as a JSONP would look like. This is amazon's JSONP link: completion.amazon.com/search/… which the autocomplete works using the same method. These are two url's displaying words the exact same way/jsonp. – Jonathan Dec 9 '11 at 22:10
show 4 more comments
feedback

1 Answer

up vote 0 down vote accepted

With a php file which handle the json call.

Here is the javascript :

$("input").autocomplete({
  source: function(request, response) {
    $.ajax({
        url: "ajax.php",
        dataType: "json",
        data: {
          "v" : "jsonp",
          "q" : request.term
        },
        success: function (data) {
                 response(data[1]);
        }
    });
  }
});


and the ajax.php

<?php
    $v = $_GET['v'];
    $q = $_GET['q'];

    echo file_get_contents("http://anywhere.ebay.com/services/suggest?v=$v&q=$q");
?>


I assume jQuery ajax() doesn't support "jsonp" datatype, because it was the problem all along.
You still have the same response in json though.

link|improve this answer
jQuery ajax() supports jsonp datatype absolutely fine: api.jquery.com/jQuery.ajax I can't see why my way doesn't work – Jonathan Dec 9 '11 at 23:17
You're right, it's supposed to support jsonp. But each time I ran your code I got a "parseerror" from jQuery with dataType on jsonp. Have you checked in bugs tickets of jQuery, maybe you'll find something, because it should definitely work. Or I'm missing the point. – YoannM Dec 10 '11 at 0:15
That's why I'm here. There is no bug on this situation. It works absolutely find with other websites – Jonathan Dec 10 '11 at 0:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.