I am trying to consume data from Amazon's Product Advertising API from a client-side javascript. My server generates the signed url (Using my private key and parameters) and passes the url back to the client. How can I then use this signed URL to be consumed by the client? Can I use a XSL stylesheet to generate JSON friendly results? If so how would this be done?

I also looked into easyxdm and implemented the following, but the callback never triggers.

var xhr = new easyXDM.Rpc({
remote: "http://xml-us.amznxslt.com"
}, 
{
    remote: {
    request: {} // request is exposed by /cors/
}
});


$("form").submit(function(e){
e.preventDefault();
query=$("#query").val();
$.getJSON(searchurl+query,function(signed){
    xhr.request({
    url: signed,
    method: "GET",
    }, function(response) {
        alert(response.status);
        alert(response.data);
    });
link|improve this question
1  
easyXDM is a two-way contract - amznxslt.com needs to deliberately expose the easyXDM cors interface for this to work. – Sean Kinsey Dec 13 '11 at 18:24
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.