我正在开发 WCF 服务,我需要将用户从 Windows Active Directory 同步到 Salesforce 帐户。我不想使用任何第三方工具或服务,但想开发一个新的。我尝试使用 salesforce 提供的 Partner WSDL,但不知道如何利用它在 salesforce 中创建新用户。请给我一些关于如何利用 Web/REST API 在 salesforce 中创建新用户的指示。任何可以解释它的示例代码或链接。
问问题
5620 次
1 回答
4
对于 Salesforce 的 REST API,您可以使用 SalesforceSharp。
下面的示例代码将在您的 Salesforce 帐户上创建一个用户:
var client = new SalesforceClient();
var authenticationFlow = new UsernamePasswordAuthenticationFlow
(clientId, clientSecret, username, password);
client.Authenticate (authenticationFlow);
var user = new
{
Username = "email@domain.com",
Alias = "userAlias",
// The ID of the user profile (Standard User, System Administrator, etc).
ProfileId = "00ei000000143vq",
Email = "email@domain.com",
EmailEncodingKey = "ISO-8859-1",
LastName = "lastname",
LanguageLocaleKey = "pt_BR",
LocaleSidKey = "pt_BR",
TimeZoneSidKey = "America/Sao_Paulo"
};
var id = client.Create ("User", user);
于 2013-11-30T21:59:50.303 回答