Pass scope and expiresAt as body params

This commit is contained in:
Girish Ramakrishnan
2018-04-28 20:41:59 -07:00
parent 7448dc5ec5
commit e34fecee5e
2 changed files with 7 additions and 3 deletions

View File

@@ -767,8 +767,12 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N
}).error(defaultErrorHandler(callback));
};
Client.prototype.createTokenByClientId = function (id, expiresAt, callback) {
post('/api/v1/oauth/clients/' + id + '/tokens?expiresAt=' + expiresAt).success(function(data, status) {
Client.prototype.createTokenByClientId = function (id, scope, expiresAt, callback) {
var data = {
scope: scope,
expiresAt: expiresAt
};
post('/api/v1/oauth/clients/' + id + '/tokens, data).success(function(data, status) {
if (status !== 201) return callback(new ClientError(status, data));
callback(null, data.token);
}).error(defaultErrorHandler(callback));