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 send friends an invitation or request to visit a website I am building.

I have the following dialogue box which allows me to select the friends I wish to invite:

<div id="fb-root"></div>
<a href="#" id="invite_fb_friends">Invite your friends</a>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
$(function(){
    $("a#invite_fb_friends").click(function(){
        FB.init({
        appId: '239473799421284',
        status: true,
        cookie: false,
        // xfbml: true
        });

FB.ui({
method: 'apprequests',
message: '<%=current_user.name %> has invite you to a party for <%=get_current_board.bp_name%>'});
});
});
</script>

This works fine and I send the invitation. However when the user clicks the accept button they just reload the same page they are on.

Here is the setup in Facebook for the Application:

Website

Site URL:http://localhost:3000/

Site Domain:localhost

App on Facebook
Canvas URL:http://localhost:3000/pages/facebook_invite/

How can I get this link to go to my site?

share|improve this question

2 Answers

up vote 1 down vote accepted

I figured it out thanks to this posting on stackoverflow Facebook Developers Section

On the Facebook Application page Edit Application they changed the name for the canvas page.

enter image description here

It is now called App Namespace and you must enter a unique name here. Then it all worked.

share|improve this answer

Have a look at this screencast on how to sort out your callback

http://blog.otherscreen.com/2011/06/invite-facebook-friends-to-your-rails-app-omniauth-javascript/

share|improve this answer
Thanks Simpleton. I watched this and it seems that the screen shots for the setup in Facebook have changed. I am also not using OmniAuth. Is there a way to do this without OmniAuth? – chell Aug 25 '11 at 6:04
Sorry. Haven't tried without OmniAuth yet. – Simpleton Aug 25 '11 at 6:15
Ok. I will give it another shot. Thanks for the help. – chell Aug 25 '11 at 6:33
Facebook has done something because I tried that tutorial and even used their code and it just does not let the user to leave Facebook to visit someone's invitation as far as I can tell. – chell Aug 25 '11 at 8:59
I'm not sure what you mean. Check out the demo on that page - it redirects properly ithinkyouareawesome.com – Simpleton Aug 25 '11 at 9:52
show 3 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.