From 850579d81ed2bd1d19584fff1046dd7c9b3add03 Mon Sep 17 00:00:00 2001 From: Brayan Osmar Pereyra Suxo Date: Fri, 22 Nov 2013 11:47:25 -0400 Subject: [PATCH] Momentaneamente removiendo el tipo de grant ClientCredentials --- workflow/engine/services/oauth2/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/services/oauth2/Server.php b/workflow/engine/services/oauth2/Server.php index 50d3fc730..6727a6b81 100644 --- a/workflow/engine/services/oauth2/Server.php +++ b/workflow/engine/services/oauth2/Server.php @@ -52,7 +52,7 @@ class Server implements iAuthenticate $this->server->addGrantType(new \OAuth2\GrantType\AuthorizationCode($this->storage)); // Add the "Client Credentials" grant type (it is the simplest of the grant types) - $this->server->addGrantType(new \OAuth2\GrantType\ClientCredentials($this->storage)); + //$this->server->addGrantType(new \OAuth2\GrantType\ClientCredentials($this->storage)); // Add the "Refresh token" grant type $this->server->addGrantType(new \OAuth2\GrantType\RefreshToken($this->storage));