You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My connector has two authentication modes to obtain data. One is OAuth and the other is apikey. Both work normally in the simulator. However, when testing on tableau, the apikey mode works normally. However, if you jump to the authentication authority and submit the password through OAuth, it will 404 when you submit the password, or when Microsoft authentication returns to our certification center, I need to make those adjustments
The text was updated successfully, but these errors were encountered:
Hi @luozewei,
Have you tried debugging in Desktop instead? The Simulator does not accurately reflect the browser we use in Desktop and there may be features that aren't available.
-Keshia
The qtwebengine / 5.1.0 does not support the samesite property of cooike. I can only ask the server to filter out the version of qtwebengine / 5 on the server. if(NotDisallowsSameSiteNone(userAgent)) { options.SameSite = (SameSiteMode)(-1); } private static bool NotDisallowsSameSiteNone(string userAgent) { if (userAgent.Contains("QtWebEngine/5")) { return true; } return false; }
I hope you can upgrade to the latest version or support Cooike SameSite as soon as possible
My connector has two authentication modes to obtain data. One is OAuth and the other is apikey. Both work normally in the simulator. However, when testing on tableau, the apikey mode works normally. However, if you jump to the authentication authority and submit the password through OAuth, it will 404 when you submit the password, or when Microsoft authentication returns to our certification center, I need to make those adjustments
The text was updated successfully, but these errors were encountered: