diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -105,26 +105,6 @@ impl Client { ItemBuilder::new(self) } - pub fn create_item(&self, body: &str) -> Result<String, Error> { - let url = self.url(ZOTAPI_ITEM_UPDATE_PATH); - let mut res = self.inner.post(&url) - .header(Accept(vec![qitem(mime::APPLICATION_JSON)])) - .header(ContentType::form_url_encoded()) - .basic_auth(self.user.clone(), Some(self.pw.clone())) - .form(&[("body", body)]) - .send()?; - - match res.status() { - StatusCode::Unauthorized => Err(Error::Unauthorized), - StatusCode::Ok => { - let mut body = String::new(); - res.read_to_string(&mut body)?; - Ok(body) - }, - _ => Err(Error::Unknown) - } - } - fn url(&self, path: &str) -> String { self.base_url.clone() + path } |