Salesforce OAuth身份验证错误请求错误

时间:2016-07-12 16:08:19

标签: oauth salesforce

我正在尝试运行一个简单的示例,使用Java代码对Salesforce进行身份验证。

我收到以下错误 - 400错误请求

我使用的登录网址是

https://login.salesforce.com/services/oauth2/token?grant_type=password&client_id=clienty_id&client_secret=client_secret&username=username&password=password

我也试过去掉放大器和;

https://login.salesforce.com/services/oauth2/token?grant_type=password&client_id=clienty_id&client_secret=client_secret&username=username&password=password

但仍有同样的错误400错误请求。

1 个答案:

答案 0 :(得分:1)

你需要尝试使用" POST"大喊。当你使用" GET"方法,你得到400错误的请求问题。 要么 您错过了在密码末尾添加安全令牌

https://login.salesforce.com/services/oauth2/token?grant_type=password&client_id= {的clientId} &安培; client_secret = {client_secret} &安培;用户名= {用户名} &安培;密码= {密码} {securitytoken}

Method : POST