SugarCRM Web 服务 Rest API Ionic Framework AngularJS
SugarCRM Web Services Rest API Ionic Framework AngularJS
我根据需要自定义应用程序 web sugarCRM,我必须使用 Ionic 框架和 AngularJS 实现混合移动应用程序。
我想从移动应用程序进行身份验证。
在我的文件夹 js/factory/userProvider.js 我有这个代码
app.factory('userProvider', function($rootScope, $http) {
function signIn(User) {
var url = 'The url of the api ';
$http.post(url,Userser).success(function (response) {
console.log(response);
});
return{ signIn: signIn }
}
});
我的大问题是 SugarCRM 已经有网络服务,我不知道 url 用于身份验证。
在我的文件夹 js/controllers/homepageController 中,我有以下代码:
app
.controller('homepageIndex', function ($scope) { })
.controller('homepageLogin', function ($scope, userProvider) {
$scope.user = {};
$scope.signIn = function (user) { userProvider.signIn(user); }
});
所以我想知道如何在我的移动应用程序中使用 sugarCRM 的网络服务进行身份验证。
SugarCRM 的 URL 是针对每家公司的。要开始使用您的应用程序,您将不得不询问用户 URL、用户名和密码。
获得此信息后,您可以使用 oauth 获取处理请求所需的信息。要使用 oauth,您需要 POST 到 SugarCRM URL/rest/v10/oauth2/token
我根据需要自定义应用程序 web sugarCRM,我必须使用 Ionic 框架和 AngularJS 实现混合移动应用程序。 我想从移动应用程序进行身份验证。 在我的文件夹 js/factory/userProvider.js 我有这个代码
app.factory('userProvider', function($rootScope, $http) {
function signIn(User) {
var url = 'The url of the api ';
$http.post(url,Userser).success(function (response) {
console.log(response);
});
return{ signIn: signIn }
}
});
我的大问题是 SugarCRM 已经有网络服务,我不知道 url 用于身份验证。
在我的文件夹 js/controllers/homepageController 中,我有以下代码:
app
.controller('homepageIndex', function ($scope) { })
.controller('homepageLogin', function ($scope, userProvider) {
$scope.user = {};
$scope.signIn = function (user) { userProvider.signIn(user); }
});
所以我想知道如何在我的移动应用程序中使用 sugarCRM 的网络服务进行身份验证。
SugarCRM 的 URL 是针对每家公司的。要开始使用您的应用程序,您将不得不询问用户 URL、用户名和密码。
获得此信息后,您可以使用 oauth 获取处理请求所需的信息。要使用 oauth,您需要 POST 到 SugarCRM URL/rest/v10/oauth2/token