Sugar CRM REST API模块扩展

Sugar CRM REST API模块扩展,rest,sugarcrm,suitecrm,Rest,Sugarcrm,Suitecrm,我通过sugarCRM提供的REST API实现了登录功能 http://<url>/service/v2/rest.php?method=login&input_type=JSON&response_type=JSON&rest_data={"user_auth":{"user_name":"Vsree","password":"0141ffbe5e8d1cbaaeee96b3ca49cc49"}} 我得到了最新的回复,工作正常。但是它是一个SuiteRM

我通过sugarCRM提供的REST API实现了登录功能

http://<url>/service/v2/rest.php?method=login&input_type=JSON&response_type=JSON&rest_data={"user_auth":{"user_name":"Vsree","password":"0141ffbe5e8d1cbaaeee96b3ca49cc49"}}

我得到了最新的回复,工作正常。但是它是一个SuiteRM核心模块,我想在不影响核心模块的情况下扩展登录功能,那么如何扩展suircrm内部的模块。如何实现这一点?为了更改登录,您需要创建登录过程在
custom/modules
目录中使用的模块的自定义版本

身份验证由用户模块处理。您可以通过从
modules/Users/authentication/

并将其粘贴到
自定义/模块/用户/身份验证/

这将使您能够扩展或创建自己的身份验证方法


您可能希望简单地复制文件。然后您可以创建自定义版本。

感谢Daniel的回复
service\core\SugarWebServiceImpl.php