From 10d7d3cb3d7c9de19d51259538da0c1610d06455 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Sun, 5 May 2013 18:11:01 +0100 Subject: [PATCH] Updated response params --- src/OAuth2/ResourceServer.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/OAuth2/ResourceServer.php b/src/OAuth2/ResourceServer.php index 474b1635..59219a0d 100644 --- a/src/OAuth2/ResourceServer.php +++ b/src/OAuth2/ResourceServer.php @@ -172,7 +172,8 @@ class ResourceServer } $this->accessToken = $accessToken; - $this->sessionId = $result['id']; + $this->sessionId = $result['session_id']; + $this->clientId = $result['client_id']; $this->ownerType = $result['owner_type']; $this->ownerId = $result['owner_id'];