* add Option to specify Production vs. Sandbox Environment also fixes issue https://github.com/TerribleDev/OwinOAuthProviders/issues/54 * ability to specify Production vs. Sandbox environment per auth session in addition to global setting * add examples to show usage of new Production vs. Sandbox Option for Salesforce provider
11 lines
373 B
C#
11 lines
373 B
C#
namespace Owin.Security.Providers.Salesforce
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string DefaultAuthenticationType = "Salesforce";
|
|
|
|
public const string EnvironmentAuthenticationProperty = "Environment";
|
|
public const string ProductionEnvironment = "Production";
|
|
public const string SandboxEnvironment = "Sandbox";
|
|
}
|
|
} |