Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Forms Authentication is a built-in and extensible system for authenticating users in an ASP.Net application that also maintains that authenticated session via a ticket (often stored as a cookie or query string parameter).

learn more… | top users | synonyms

2
votes
2answers
253 views

Does it make sense to implement Facebook auth as an ASP.NET Forms auth custom membership provider?

I'm currently developing a web application that will use Facebook as a authentication service. Does it make sense to implement it as an ASP.NET Forms Authentication custom membership provider? While I ...
0
votes
1answer
218 views

Authentication in a mobile app

We are developing a hybrid mobile app (code is written in HTML and runs on browser shell as a native app on the device). We need to authenticate the user against an external security manager. I've ...
0
votes
2answers
239 views

Facebook App Error : Invalid parameter (FacebookException)

I have a strange problem with my basic Facebook app. I followed the below URL to develop basics of my app. ...
0
votes
1answer
100 views

Custom link on facebook's allow access dialog

Some application on facebook, have a custom link (for example to companies' private policy, rules). This link is located in the bottom of Allow access dialog? How can i add such a link to my app?
0
votes
1answer
294 views

How to get facebook video profile by FQL

if (!IsPostBack) { var auth = new CanvasAuthorizer(fb); if (!auth.IsAuthorized()) { var url = auth.GetLoginUrl(new HttpRequestWrapper(Request)); var content = ...
1
vote
1answer
371 views

Facebook with Membership Provider?

I am using Facebook connect for my project with custom written code to deal with authentication, Do you suggest using Membership provider to deal with users or should i develop some custom Database in ...