HttpRequestService::_POST PHP 메소드

_POST() 공개 메소드

POST wrapper for insert data
public _POST ( $url, $params = null, $username = null, $password = null, $contentType = null ) : RESTClient
$url String
$params mixed
$username String
$password String
$contentType String
리턴 RESTClient
    public function _POST($url, $params = null, $username = null, $password = null, $contentType = null)
    {
        $response = $this->call($url, 'POST', $params, $username, $password, $contentType);
        //$this->convertEncoding($response,'utf-8',$this->_encode)
        return $this->json_foreach($this->parseResponse($response));
    }