這裡是其他 quickfix 的使用者使用 PHP 版本 < 5.2.0。如果您有較新版本的 PHP 比 5.2.0 instaled 您的伺服器上,您不必進行任何更改。
在檔中:
Code:
forum root -> includes -> vbenterprisetranlator_class_translator.php
查找 (它應該開始行 472 附近):
PHP Code:
$token = json_decode (curl_exec($obj_connection));
self::$token_ttl = time() + ($token->{'expires_in'});
self::$token = 'Authorization: Bearer '.$token->{'access_token'};
curl_close($obj_connection);
return 'Authorization: Bearer '.$token->{'access_token'};
然後替換為:
PHP Code:
$fulltoken = curl_exec($obj_connection);
preg_match('/{"access_token":"(.*?)"/', $fulltoken, $token);
preg_match('/"expires_in":"(.*?)"/', $fulltoken, $expires);
self::$token_ttl = time() + $expires[1];
self::$token = 'Authorization: Bearer '.$token[1];
curl_close($obj_connection);
return 'Authorization: Bearer '.$token[1];