本文整理汇总了C#中Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.ForUmbracoBackOffice方法的典型用法代码示例。如果您正苦于以下问题:C# FacebookAuthenticationOptions.ForUmbracoBackOffice方法的具体用法?C# FacebookAuthenticationOptions.ForUmbracoBackOffice怎么用?C# FacebookAuthenticationOptions.ForUmbracoBackOffice使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions
的用法示例。
在下文中一共展示了FacebookAuthenticationOptions.ForUmbracoBackOffice方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ConfigureBackOfficeFacebookAuth
/// <summary>
/// Configure facebook sign-in
/// </summary>
/// <param name="app"></param>
/// <param name="appId"></param>
/// <param name="appSecret"></param>
/// <param name="caption"></param>
/// <param name="style"></param>
/// <param name="icon"></param>
/// <remarks>
///
/// Nuget installation:
/// Microsoft.Owin.Security.Facebook
///
/// Facebook account documentation for ASP.Net Identity can be found:
///
/// http://www.asp.net/web-api/overview/security/external-authentication-services#FACEBOOK
///
/// Facebook apps can be created here:
///
/// https://developers.facebook.com/
///
/// </remarks>
public static void ConfigureBackOfficeFacebookAuth(this IAppBuilder app, string appId, string appSecret,
string caption = "Facebook", string style = "btn-facebook", string icon = "fa-facebook")
{
var fbOptions = new FacebookAuthenticationOptions
{
AppId = appId,
AppSecret = appSecret,
//In order to allow using different facebook providers on the front-end vs the back office,
// these settings are very important to make them distinguished from one another.
SignInAsAuthenticationType = Constants.Security.BackOfficeExternalAuthenticationType,
// By default this is '/signin-facebook', you will need to change that default value in your
// Facebook developer settings for your app in the Advanced settings under "Client OAuth Login"
// in the "Valid OAuth redirect URIs", specify the full URL, for example: http://mysite.com/umbraco-facebook-signin
CallbackPath = new PathString("/umbraco-facebook-signin")
};
fbOptions.ForUmbracoBackOffice(style, icon);
fbOptions.Caption = caption;
app.UseFacebookAuthentication(fbOptions);
}