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.

Ok this is might be the dumbest question ever.. but i cannot for the life of me figure out how to add one of my Facebook apps to one of my Facebook pages. When I would look at my app settings on developers.facebook.com there used to be a link to view the App Profile Page. Then from there I could click an Add to Page link. But I have no clue how to do this now grrr.

share|improve this question

1 Answer

up vote 1 down vote accepted
<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="author" content="Frederick Behrends" />

    <title>Facebook PageTab Dialog Generator</title>
</head>

<body>

AppID:<input type="text" id="AppID" value=""/><br />
<input type="button" value="Add to page" onclick="AddToPage();"/>

<script>
function AddToPage(){
    var Next,AppID;
    AppID = document.getElementById('AppID').value;

    if(isNaN(AppID) === true){
        alert('AppID ungültig');
        return false;
    }


    if(Next == '' || typeof Next == 'undefined')
        Next = 'http://www.facebook.com/';

    window.open("http://www.facebook.com/dialog/pagetab?app_id="+AppID+"&next="+Next,"PageTab","width=800,height=500");

    return false;
}
</script>
</body>
</html>

Use this html file.

share|improve this answer
Pretty crazy it has to be that difficult. Thanks! – Dustin McGrew Mar 20 '12 at 20:08

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.