Browse Source

fix api url

Olivier Massot 5 years ago
parent
commit
0b5a9b1d01
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ot_connect/Classes/Service/OtAuthenticationService.php

+ 1 - 1
ot_connect/Classes/Service/OtAuthenticationService.php

@@ -17,7 +17,7 @@ use \TYPO3\CMS\Core\Authentication\AbstractAuthenticationService;
 class OtAuthenticationService extends AbstractAuthenticationService
 {
 
-    CONST DOMAIN = 'http://api.opentalent.fr/app.php';
+    CONST DOMAIN = 'https://api.opentalent.fr';
     CONST API_URI = self::DOMAIN . '/api/';
     CONST LOGIN_URI = self::API_URI . 'login_check';
     CONST GET_USER_DATA_URI = self::API_URI . 'user/datafortypo3';