Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I add a friend invite feature to my newly created Facebook application?

share|improve this question
1  
See David Doward's answer below. Please consider pasting code that illustrates your problem. – Tony Miller Jul 23 '09 at 12:12

2 Answers

I have never built a Facebook application.

I have never investigated how to build a Facebook application.

It took me less than a minute to guess the address of the homepage for Facebook app development and follow a couple of links with names such as "How To Guides" to find http://wiki.developers.facebook.com/index.php/Fb:request-form … which is exactly what you asked for.

share|improve this answer
1  
The facebook documentation is very crude and the API is always changing so I think this is a fair question to ask, even if it was badly stated. – Lone Coder Mar 10 '10 at 23:00

I was able to get this to work by using this sample with this code:

<fb:serverFbml style="width: 755px;">
<script type="text/fbml">
    <fb:fbml>
        <fb:request-form  method="POST" invite="true" type="MassiveFreecell"
                content="You have been invited to the Application Name application. <%= Server.HtmlEncode(@"<fb:req-choice url=""http://apps.facebook.com/massive-freecell-dev/"" label=""OK"" />") %>" >
            <fb:multi-friend-selector showborder="false" actiontext="Invite your friends to use this application." />
            <fb:request-form-submit />
        </fb:request-form>
    </fb:fbml>
</script>

share|improve this answer

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.