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 want users to add my Facebook Canvas application to their profile. I can create my own page with a 'connect' button to do this, but how do I do this within the canvas page?

What do I mean?

Go to any typical application, usually the first screen you see is an 'Allow Access?' screen with a button for 'Allow' or cancel (link).

How do I get such a screen to display for my canvas application?

share|improve this question

1 Answer

up vote 0 down vote accepted

Use the API's require_login() method.

$facebook = new Facebook( ... );
$facebookId = $facebook->require_login();
share|improve this answer
Yup, that's it, just found that while looking at the footprints demo. Cheers! – RIs Oct 21 '09 at 9:11

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.