J'essaye d'utiliser l'authentification OAuth pour obtenir le jeton d'authentification Salesforce, donc j'ai fait référence à Documents wiki mais après avoir obtenu le code d'autorisation, lorsque je fais une demande de poste avec 5 paramètres requis, j'obtiens l'exception suivante
{"error":"invalid_grant","error_description":"authentication failure"} CODE 400
JSON = {"error":"invalid_grant","error_description":"authentication failure"}
ce qui est, je pense, une mauvaise demande.
PostMethod post = new PostMethod("https://login.salesforce.com/services/oauth2/token");
post.addParameter("code",##############);
post.addParameter("grant_type","authorization_code");
post.addParameter("redirect_uri","#################");
post.addParameter("client_id",this.client_id);
post.addParameter("client_secret",this.client_secret);
httpclient.executeMethod(post);
String responseBody = post.getResponseBodyAsString();
System.out.println(responseBody+" CODE "+post.getStatusCode());
Veuillez répondre, si l'exception est connue ?