"错误":" invalid_grant"," error_description":"无效的授权码"在salesforce中

时间:2018-03-21 13:53:11

标签: asp.net oauth oauth-2.0 salesforce

我已经设置了我的' Salesfore'为OA'连接的应用程序使用我能够验证用户。对于后续请求,我尝试获取访问令牌,因此将值发布到Salesforce,如下所示。

$.post("https://login.salesforce.com/services/oauth2/token",
                {
                    "grant_type": "authorization_code",
                    "code": "00DXXXX5",
                    "client_id": "3MVXXXXK",
                    "client_secret": "15XXXX4",
                    "redirect_uri": "https://mysit11e.com/SalesforceCallback.aspx"
                });

但不幸的是我遇到了错误

  

"错误":" invalid_grant"," error_description":"无效的授权码"

我已确保代码中不存在%符号,因此将%21替换为!

我还应该尝试使其发挥作用。

1 个答案:

答案 0 :(得分:0)

您似乎将其发布为json尝试将其作为请求字符串发布

grant_type=authorization_code&code=00DXXXX5&client_id=3MVXXXXK&client_secret=15XXXX4&redirect_uri=https://mysit11e.com/SalesforceCallback.aspx