Questions tagged «force.com»

9
Force.com平台的缺点
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案会得到事实,参考或专业知识的支持,但是这个问题可能会引起辩论,争论,民意测验或进一步的讨论。如果您认为此问题可以解决并且可以重新提出,请访问帮助中心以获取指导。 7年前关闭。 目前,我们正在考虑将Force.com平台用作我们的开发平台,而销售人员和force.com网站则充满了使其成为全球最佳平台的原因。不过,我正在寻找的是使用这种平台的一些实际缺点。

11
Salesforce身份验证失败
我正在尝试使用OAuth身份验证来获取Salesforce身份验证令牌,因此我引用了wiki文档,但是在获取授权代码后,当我发出带有5个必需参数的Post请求时,出现了以下异常 {"error":"invalid_grant","error_description":"authentication failure"} CODE 400 JSON = {"error":"invalid_grant","error_description":"authentication failure"} 我想这是一个不好的要求。 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()); 请答复,如果知道例外情况?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.