Changeset 2495309
- Timestamp:
- 03/14/2021 02:16:44 PM (5 years ago)
- Location:
- chatwee/trunk
- Files:
-
- 2 edited
-
chatwee.php (modified) (1 diff)
-
lib/ChatweeV2_SDK/Chatwee/HttpClient.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
chatwee/trunk/chatwee.php
r2459160 r2495309 202 202 )); 203 203 } catch(Exception $exception) { 204 chatwee_add_log("Error while executing chatwee_sso_login: " . $exception->getMessage()); 204 $chatwee_user_id = chatwee_sso_register($user); 205 chatwee_add_log("Error while executing chatwee_sso_edit: " . $exception->getMessage()); 205 206 } 206 207 -
chatwee/trunk/lib/ChatweeV2_SDK/Chatwee/HttpClient.php
r2495274 r2495309 110 110 if($this->responseStatus != 200) { 111 111 $responseError = $this->responseObject ? $this->responseObject->errorMessage : "ChatweeV2 PHP SDK unknown error: " . $this->responseStatus; 112 $responseError .= ' ' . curl_error($curl);112 //$responseError .= ' ' . curl_error($curl); 113 113 $responseError .= " (" . $url . ")"; 114 114 throw new Exception($responseError);
Note: See TracChangeset
for help on using the changeset viewer.