0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Backlog API Scala ラッパーライブラリを作りました!

Posted at

escalade-backlog

Backlog API を叩くための Scala ラッパーライブラリを作成しました。
2012/12/19 時点で API ドキュメントに記載されている全 API に対応しています。

使い方

一般APIの使用

val client = BacklogClientFactory(<スペースID>, <ユーザーID>, <パスワード>).createClient
client.getProjects
client.getUser(<ユーザID or ログインID>)
client.findIssue(FindIssueParamBuilder(<プロジェクトID>).build)
client.findIssue(
    FindIssueParamBuilder(<プロジェクトID>).componentId(<カテゴリID>).milestoneId(<マイルストーンID1>, <マイルストーンID2>).build)

管理者向けAPIの使用

val client = BacklogClientFactory(<スペースID>, <ユーザーID>, <パスワード>).createAdminClient
client.getProjects
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?