Castro Alhdo
Castro Alhdo
```ts export class LoginService { constructor(protected http: HttpClient) {} login(email: string, password: string, rememberMe = false) { return this.http.post('/auth/login/', { username: email, password, remember_me: rememberMe, }); } refresh(token: string) {...
Actuallly i want it to be POST request not GET
Sure. The point is to always have a HTTPS endpoint easily. The same way with gradio app you have shareable url like xxxxx.gradio.live. My PR is to integrate that shareable...
I am interested in the solution also