jsonPost method

RequestX jsonPost()

Implementation

RequestX jsonPost () {
  _method = RequestMethod.post;
  _headers['Accept'] = 'application/json';
  _headers['Content-Type'] = 'application/json; charset=UTF-8';
  return this;
}