I have a Facebook app (canvas) hosted on Heroku, say xxxx.herokuapp.com/index.php. As well I have a website outside the canvas, say xxxx.herokuapp.com/welcome.php where I am encouraging people to learn more about the app and install it.
Is there any widget "install app" that redirects visitor on welcome.php to index.php, asks for login (if necessary) and permissions to install the app?
I am using at the moment the "login button" but it just does the login step.
Thanks
No, There is no official
Install App
button but you could create one yourself.Create a button which would redirect visitors onclick to index.php page and on index.php page, check if the user is already logged in or not, if not then redirect them to authentication flow with whatever permissions your app needs and then back to index.php.
If you want a snippet, I can post it.
EDIT: As requested, here's the snippet:
index.php
welcome.php
Example: http://jsfiddle.net/9CCcB/I've used CSS3 Social Sign-in Buttons by Nicolas Gallagher for this example, you could use any style for the buttons.