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?

Backlog APIで利用する、自身のユーザーIDを確認する

Posted at

開発者ツールのConsoleタブで以下のコマンドを実行する

console.log(Backlog.resource['loginUser.id']);

ログインユーザーの情報をまとめて取る場合

Object.fromEntries(
    Object.entries(Backlog.resource)
        .filter(([k]) => k.startsWith("loginUser.")
    )
)
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?