c# - Need help resolving redirect_uri_mismatch error -
i'm using google/facebook/linkedin authentication on asp.net mvc 5 website. reason, every once in while, users complain not being able login because redirect_uri_mismatch error. as said, what's strange error seems happen intermittently , users. i'm including code down below can point out i'm doing wrong. here's startup.cs file code using system; using system.collections.generic; using system.linq; using system.security.claims; using system.web; using owin; using owin.security.providers.linkedin; using microsoft.owin.security.cookies; using microsoft.owin.security.facebook; using microsoft.owin.security.google; namespace mywebsite { public class startup { public void configuration(iappbuilder app) { // set app use cookies authentication var cookieoptions = new cookieauthenticationoptions { authenticationtype = "cookies", cookiesecure = cookiesecureoption.s...