Bryan J. Knight

Results 5 comments of Bryan J. Knight

Still happening in 3.1.1, also blocking usage of embedded dashboards. Unfortunately the workaround above won't work because the embed SDK won't do that for me

Digging into this more, it seems `/api/v1/security/login` does not set a session cookie; hence, the `/api/v1/me` and underlying calls fail b/c there's no session cookie

> > Digging into this more, it seems `/api/v1/security/login` does not set a session cookie; hence, the `/api/v1/me` and underlying calls fail b/c there's no session cookie > > I...

Ah, good find! Yeah, that's looks close, the one I have starts with a `.`. Digging into the `superset_config.py` in the main repo, I see this: ``` # # Flask...

Adding some logging within `superset/views/users/api.py` seems to show that the global user is not getting set when the request comes in to `CurrentUserRestApi`. Interestingly, it seems the current user API...