/**
  * @param string $path
  * @param array  $data
  *
  * @return array
  *
  * @throws BadRequestException
  */
 protected function delete($path, $data = [])
 {
     $response = Curl::delete(Instagram::API_URL . $path, $data)->run();
     return self::_handleResponse($response);
 }