Quantcast
Viewing all articles
Browse latest Browse all 44

Updated Wiki: FaceSharp Attributes

  1. Get FaceSharp with NuGet
  2. Apply Attributes on Controllers for authentication.
  3. Initialize Facebook JavaScript SDK Properly Learn how to initialize the Javascript SDK AND Facesharp Server Side at the same time.
  4. Make Facebook API Calls with FaceSharp

Using Attributes to Aid with Authorization

Decorating your Controller methods is a simple means of enforcing users are logged in and have authenticated your app.

        [FacebookGraphApiFilter]
        public ActionResult Index()
        {
            var facebookApi = new FacebookApi();
            var currentUser = facebookApi.User.GetCurrentUser();
            return View(currentUser);
        }

        [FacebookGraphApiFilter]
        public ActionResult DynamicExample()
        {
            var facebookApi = new FacebookApi();
            dynamic friends = facebookApi.GraphApi.MakeGraphRequest("me", "friends", new[] {"id", "name", "first_name", "last_name"});
            return View(friends);
        }

Attributes on Classes

You can also place the FacebookGraphApiFilter on an entire class if all methods are to be only accessed by authorized Facebook Users

    [FacebookGraphApiFilter]
    public class TestController : BaseController
    {
        public ActionResult Index()
        {
            var facebookApi = new FacebookApi();
            var currentUser = facebookApi.User.GetCurrentUser();
            return View(currentUser);
        }

        public ActionResult DynamicExample()
        {
            var facebookApi = new FacebookApi();
            dynamic friends = facebookApi.GraphApi.MakeGraphRequest("me", "friends", new[] {"id", "name", "first_name", "last_name"});
            return View(friends);
        }


The FacebookGraphApiFilter uses your implementation of IFacebookCore to read in Facebook configuration details, you can supply them directly:

    [FacebookGraphApiFilter(ApplicationId = "12345",ApplicationSecret = "12314")]
    public class TestController : BaseController
    {
        public ActionResult Index()

Recommendations

Canvas Application Settings

Canvas apps should have both CanvasRedirect = true and ForceLogin = true
  • ForceLogin, TRUE = ensures that users must be authenticated before this action will be executed
  • CanvasRedirect TRUE = will emit a javascript fragment redirecting the user to the Facebook authorization dialog.
  • ResponseType "code token" - helps to initialize both JavaScript SDK and Facesharp Server Side SDK at the same time.

        [FacebookGraphApiFilter(CanvasRedirect = true, ForceLogin = true, ResponseType = "code token")]
        public ActionResult Index()
        {
            var facebookApi = new FacebookApi();
            var currentUser = facebookApi.User.GetCurrentUser();
            return View(currentUser);
        }

Viewing all articles
Browse latest Browse all 44

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>