当前位置: 首页>>代码示例>>C#>>正文


C# FacebookAuthenticationOptions.ForUmbracoBackOffice方法代码示例

本文整理汇总了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);
 }
开发者ID:robertjf,项目名称:UmbracoIdentityExtensions,代码行数:42,代码来源:UmbracoFacebookAuthExtensions.cs


注:本文中的Microsoft.Owin.Security.Facebook.FacebookAuthenticationOptions.ForUmbracoBackOffice方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。