api/users/me
自分のuser情報
https://scrapbox.io/api/users/me
クリックすると自分の情報が表示される→
応答の型
code:ts
type UserResponse = {
isGuest: boolean; // loginしていないとtrueになる
csrfToken: string;
} &
// loginしているときだけ取得できる情報
Partial<{
id: string;
name: string;
displayName: string;
photo: string; // 自分のページがなかったときに使用されるprofile画像
email: string;
pro: boolean;
provider: 'google' | 'microsoft' | 'email';
created: number;
updated: number;
config: {
userScript: boolean;
emacsBinding: boolean;
};
}>;
from Scrapbox REST APIの一覧