Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/design-patterns/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Web services 如何使用Web服务API访问SalesForce用户配置文件?_Web Services_Salesforce - Fatal编程技术网

Web services 如何使用Web服务API访问SalesForce用户配置文件?

Web services 如何使用Web服务API访问SalesForce用户配置文件?,web-services,salesforce,Web Services,Salesforce,是否可以从SalesForce WebService读取用户列表或用户配置文件? 我找不到任何允许从合作伙伴或企业web服务API接触用户集合的方法。 binding.getUserInfo()只允许检索当前用户。但是所有的用户呢?我的帐户允许我管理用户,我可以从web用户界面看到他们。现在,我需要从web服务API中读取用户名等。您将对用户和/或配置文件对象使用soql查询,例如,选择id,username from user当然,这取决于您想要的确切字段。如果这个答案有帮助,请接受它。

是否可以从SalesForce WebService读取用户列表或用户配置文件? 我找不到任何允许从合作伙伴或企业web服务API接触用户集合的方法。
binding.getUserInfo()只允许检索当前用户。但是所有的用户呢?我的帐户允许我管理用户,我可以从web用户界面看到他们。现在,我需要从web服务API中读取用户名等。

您将对用户和/或配置文件对象使用soql查询,例如,
选择id,username from user

当然,这取决于您想要的确切字段。如果这个答案有帮助,请接受它。