目前,我正在使用 SOAP 访问令牌,这可以使用我的用户 ID 和密码来完成,无需客户端密钥和秘密。
binding.login(用户名,密码+“”);
有没有办法对 REST 做同样的事情,即只使用 ID 和密码访问令牌?
就像是,
string URI = "https://login.salesforce.com/services/oauth2/token";
StringBuilder strbody = new StringBuilder();
strbody.Append("grant_type=password&");
strbody.Append("username=" + "xxx" + "&");
strbody.Append("password=" + "xxxx");