ASP.NET Microsoft Dev Kit

From Facebook Developers Wiki

Jump to: navigation, search

[edit] Download the Microsoft Facebook Developer Toolkit

[edit] Please use the discussion board and issue tracker on Codeplex for future enhancements to the toolkit

Use this wiki for best practices, hints, etc. Please note that all the suggestions that were on this wiki page have been folded into the latest drop up on Codeplex.

[edit] ASP.NET in the Canvas

In order to get your app to even remotely work with ASP.NET and the Canvas, you must remember to set these in your Page_Load

       _fbService.Secret = ""
       _fbService.ApplicationKey = ""
       _fbService.IsDesktopApplication = False
       _fbService.SessionKey = Request.Form("fb_sig_session_key")
       _fbService.UserId = Request.Form("fb_sig_user")

before any requests will work.

_fbServices.IsDesktopApplication is not required.

Back to ASP.NET