Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

FacebookExternalAuthSettings.cs

using Nop.Core.Configuration;

namespace Nop.Plugin.ExternalAuth.Facebook;

/// 
/// Represents settings of the Facebook authentication method
/// 
public class FacebookExternalAuthSettings : ISettings
{
    /// 
    /// Gets or sets OAuth2 client identifier
    /// 
    public string ClientKeyIdentifier { get; set; }

    /// 
    /// Gets or sets OAuth2 client secret
    /// 
    public string ClientSecret { get; set; }
}