Qiitex

Simple Elixir wrapper for the Qiita v2 API.

Based heavily on the Tentacat libraries

Installation

If available in Hex, the package can be installed by adding qiitex to your list of dependencies in mix.exs:

def deps do
[{:qiitex, "~> 0.1.0"}]
end

Usage

iex> client = Qiitex.client.new %{access_token: "enteryouraccesstoken"}
iex> Qiitex.Tags.list client
iex> Qiitex.Items.create client, %{title: "title", body: "body", tags: [%{name: "qiita"}]}

Features

Scope

Access token

Authenticated user

Comment

Emoji reaction

Expanded template

Item

Like

Project

Tag

Tagging

Team

Template

User


Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/qiitex.