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.

Let me put my code first string strSigned = Request.Params["signed_request"]; // JSONObject obj = JSONObject.CreateFromString(strSigned);

            Facebook.FacebookSignedRequest fb = FacebookSignedRequest.Parse(AppSecret, strSigned);

            JsonObject jsonObj = fb.Data as JsonObject;

            if (!jsonObj.ContainsKey("user_id"))
            {
                string appId = App_Id;


                string redirectUrl = "http://127.0.0.1/Default.aspx"

                string redirectstr = "https://www.facebook.com/dialog/oauth?client_id=" + appId + "&redirect_uri=" + redirectUrl + "&scope=email,read_stream";

                Page.ClientScript.RegisterStartupScript(this.GetType(), "redirect", "<script>top.location.href='" +redirectstr +"'</script>");

                Response.Clear();
            }
            else
            {
                Response.Write(jsonObj["user_id"].ToString());
            }

Above code runs perfectly untill user press allow permissions.the application is actually redirecting to the mentioned redirect_uri http:... and not staying within facebook.

i am really bugged with this.let me know the solution.

share|improve this question

1 Answer

up vote 0 down vote accepted

It is made this way so that it can be used by external sites which accept facebook login.

The redirect_uri can be set to:

apps.facebook.com/myapp/

or

www.facebook.com/pageurl?sk=app_YOUR_APP_ID

along with external site url.

share|improve this answer
does that mean i should give redirect_uri as my application url? – Mandar Jogalekar Feb 23 '12 at 16:11
yes, you can set redirect_uri to apps.facebook.com/myapp or facebook.com/pageurl?sk=app_YOUR_APP_ID – Alexander Nenkov Feb 23 '12 at 16:15
doing that gives me unknown error,do i need to put same url somewhere else in facebook app configuration? – Mandar Jogalekar Feb 23 '12 at 16:18
can you provide your oauth link? – Alexander Nenkov Feb 23 '12 at 16:35
show 2 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.