구글 짧은 주소 오류 수정

This commit is contained in:
chicpro
2015-04-13 14:23:18 +09:00
parent 8d342c099e
commit f97a26c6cb

View File

@ -2430,7 +2430,7 @@ function googl_short_url($longUrl)
// URL Shortener API ON
$apiKey = $config['cf_googl_shorturl_apikey'];
$postData = array('longUrl' => $longUrl, 'key' => $apiKey);
$postData = array('longUrl' => $longUrl);
$jsonData = json_encode($postData);
$curlObj = curl_init();