Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ma2gedev/qiita_ex
Qiita API v2 Interface for Elixir
https://github.com/ma2gedev/qiita_ex
Last synced: 3 months ago
JSON representation
Qiita API v2 Interface for Elixir
- Host: GitHub
- URL: https://github.com/ma2gedev/qiita_ex
- Owner: ma2gedev
- License: mit
- Archived: true
- Created: 2014-12-12T02:36:11.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2022-12-28T12:54:32.000Z (about 2 years ago)
- Last Synced: 2024-08-05T02:02:29.885Z (6 months ago)
- Language: Elixir
- Homepage:
- Size: 13.7 KB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - A Qiita API v2 Interface for Elixir. (Third Party APIs)
- fucking-awesome-elixir - qiita_ex - A Qiita API v2 Interface for Elixir. (Third Party APIs)
- awesome-elixir - qiita_ex - A Qiita API v2 Interface for Elixir. (Third Party APIs)
README
# QiitaEx - Qiita API v2 Interface for Elixir
## :warning: This library is no longer maintained :warning:
## Installation
Add `:qiita_ex` library to your project's dependencies in `mix.exs` and also add in `application` function:
```elixir
def application do
[applications: [:logger, :qiita_ex]]
enddefp deps do
[
{:qiita_ex, "~> 0.0.1"}
]
end
```And fetch:
```
$ mix deps.get
```## Usage
Go to https://qiita.com/settings/tokens/new and get your token.
```
iex -S mix
iex> response = QiitaEx.API.Users.get_user("", "ma2ge")
iex> response.status_code
iex> response.headers
iex> response.body
```## License
Copyright © 2014 Takayuki Matsubara, released under the MIT license.