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);
});