How to create a "Send to Mobile" button on web?

I can see that Wooga and other developers started to include a button like this in their Facebook games, but can't find any references in the documentation.

There is an example of the button here: https://www.facebook.com/plugins/send_to_mobile.php?app_id=373748152681140&size=large and it sends a push notification to your Facebook app on your phone with a link to download the app from the appstore.

Upvotes: 7

Views: 1516

Answers (1)

Ilya Gazman
Ilya Gazman

Reputation: 32231

It looks like some Facebook test, they also do this. I don't think it's official yet

Edit: Also found code on this website:

<div id="toMobileOuter" style="position:absolute; top:2px; right:0px;">
            <iframe id="sendToMobile" frameborder="0" width="180px" height="24px"
                src="https://www.facebook.com/plugins/send_to_mobile.php?app_id=460738653945219&size=medium"></iframe>
</div>

Upvotes: 2

Related Questions