function TwitterOAuth::delete in Tweet Feed 7.3
Same name and namespace in other branches
- 6 inc/twitter-oauth.inc \TwitterOAuth::delete()
- 7 inc/twitter-oauth.inc \TwitterOAuth::delete()
- 7.2 inc/twitter-oauth.inc \TwitterOAuth::delete()
DELETE wrapper for oAuthReqeust.
File
- inc/
twitter-oauth.inc, line 162
Class
- TwitterOAuth
- Twitter OAuth class
Code
function delete($url, $parameters = array()) {
$response = $this
->oAuthRequest($url, 'DELETE', $parameters);
if ($this->format === 'json' && $this->decode_json) {
return json_decode($response);
}
return $response;
}