From c44633ffad7dd951af7d883241f10a44a6342f1a Mon Sep 17 00:00:00 2001 From: Yves Maerschalck Date: Thu, 31 May 2018 16:19:54 +0200 Subject: [PATCH] fix base_url --- Services/IMSProvider.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Services/IMSProvider.php b/Services/IMSProvider.php index 74a393b..63ebc8c 100644 --- a/Services/IMSProvider.php +++ b/Services/IMSProvider.php @@ -46,7 +46,7 @@ public function prepareLaunchRequest(array $extraParameters = array()) { $parameters = array_merge($this->parameters, $extraParameters); - $oauthRequest = new OauthRequest($parameters, $this->config['url'], $this->config['baseUrl'], $this->config['key'], $this->config['secret']); + $oauthRequest = new OauthRequest($parameters, $this->config['url'], $this->config['base_url'], $this->config['key'], $this->config['secret']); $oauthRequest->signRequest(); return $oauthRequest; @@ -75,6 +75,7 @@ public function configureOptions(OptionsResolver $resolver) 'secret', 'key', 'url', + 'base_url' )); } }