Using .NET WebBrowser control, why Salesforce.com logs the user in automatically after his/her session has been invalidated?
问题 I'm logging in users via REST in my .NET application. For that in the WebBrowser control constructor I do the following: string server = "https://login.salesforce.com/"; var authURI = new StringBuilder(); authURI.Append(server + "services/oauth2/authorize?"); authURI.Append("response_type=code"); authURI.Append("&client_id=" + clientID); authURI.Append("&redirect_uri=" + redirectURL); webBrowser1.Navigate(authURI.ToString()); This works fine, the user is being presented the standard sfdc