Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I am trying to find the general principles of using the Facebook C# SDK to write a canvas application.

My approach is as follows. I have a master page which I attempt to authorise on the oninit page. All is well. The first time round we are not authorized and the second time round we are. When I post back it all goes wrong. I would have expected the authorization / cookies / session item / viewstate item to hang around and my authorizer item to remain authorised.

This appears not to be the case.

Should I only check this authorization once and then stick this auth token in memory? then when I want to get information / post information, pass this auth token in manually?

Is the general principle that when I want to post / get I create a new instance of facebookapp and pass in the auth token?

Here is the code i was using.

Can I get some general principles specific to c#, asp.net, codeplex SDK dlls

Many thanks Spiggers

public partial class facebook : System.Web.UI.MasterPage
{
    protected FacebookApp fbApp;
    protected CanvasAuthorizer authorizer;
    protected FacebookSettings oSettings = new FacebookSettings();

    protected override void OnInit(EventArgs e) {

            //not sure that we need this, or indeed if this works
            //HttpContext.Current.Response.AddHeader("p3p", "CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");

            oSettings.AppId = Config.Facebook.FacebookApplicationID;
            oSettings.AppSecret = Config.Facebook.FacebookSecret;
            fbApp = new FacebookApp(oSettings);
            authorizer = new CanvasAuthorizer(fbApp);

            if (!authorizer.IsAuthorized()) // postbacks always fail this, to it reposts itself and the postback event does not fire!!!
            {
                string scope = "publish_stream,email,user_birthday";
                var url = Common.Facebook.Authorization.AuthURL(Config.Facebook.FacebookApplicationID, Config.Facebook.RedirectURL, scope);
                var content = CanvasUrlBuilder.GetCanvasRedirectHtml(url);
                Response.ContentType = "text/html";
                Response.Write(content);
                Response.End();
            }
            base.OnInit(e);
        }
     }
share|improve this question
duplicate stackoverflow.com/a/5364815/157260 – prabir Feb 21 '12 at 19:05
possible duplicate of ASP.NET4 canvas app: Postback causes unexpected redirect – Nathan Totten Feb 24 '12 at 4:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.