Jump to content

connexion webservice ajax


Recommended Posts

Bonjour

j'essaye de me connecté a mon boutique en utilisant webservice et ajax, j'ai trouvé qu'un tutoriel de prestashop  pour php j'ai essayé tout seul avec ce code mais ça marchera pas, il me retourne 0 error

 

<script>
$(document).ready(function(){
$.ajax({
type:"GET",
datatype:"jsonp",
jsonp: "callback",
 
data:{
ws_key:"XXXXXXXXXXXXXXXXXXXXXXXXXXX",
},
success: function( response ) {
console.log( response ); // server response
},
error: function(xhr) {
 
 alert("An error occured: " + xhr.status + " " + xhr.statusText);
 }
});
 
    });
</script>

 

 

pouvez vous m'aidez merci

Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...