php-rest-curl
php-rest-curl copied to clipboard
Simple PHP CURL client for modern CRUD applications
How do i handle that ?
iam try to use `$url = "https://graph.facebook.com/v2.6/me/messages?access_token=".$accessToken; RestCurl::post($url);` but get in status 400 how to use post method?
because the filter is niet working RestCurl::get($this->apiUrl, array('serial_number' => '12345')); is not responding correctly
Add custom header and relateds, example code: // Array $http_header data default ``` $headerDataDefault = array('Accept: application/json', 'Content-Type: application/json'); ``` ``` // Check headerData if (!empty($headerData)) { $headerDataDefault = array_merge($headerDataDefault,...