MCPcopy Create free account
hub / github.com/Botloader/botloader / confirmLogin

Method confirmLogin

frontend-common/src/api_client.ts:113–121  ·  view source on GitHub ↗
(code: string, state: string)

Source from the content-addressed store, hash-verified

111 }
112
113 async confirmLogin(code: string, state: string): Promise<ApiResult<LoginResponse>> {
114 return await this.post("/api/confirm_login", {
115 kind: "json",
116 body: {
117 code: code,
118 state: state,
119 }
120 });
121 }
122
123 async getUserPremiumSlots(): Promise<ApiResult<PremiumSlot[]>> {
124 return await this.get("/api/premium_slots");

Callers 1

completeLoginFunction · 0.95

Calls 1

postMethod · 0.95

Tested by

no test coverage detected