I’d like to be able to view a facebook page from within a Corona-based app. Facebook has a Page Plugin. If you go to this site, you can impose a URL and parameters. As a result you get a javascript and an HTML reference. I can create a local html file with the results and use a webPopup to show. However, i end up with a hyperlink that you must click to see the page. Can i avoid the hyperlink and show the page directly? Is there a better way with Graph API? [i generated the output below from the referenced facebook developer page]
https://developers.facebook.com/docs/plugins/page-plugin
---- JAVA SCRIPT —
<div id=“fb-root”></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = “//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.7&appId=1760582670857920”;
fjs.parentNode.insertBefore(js, fjs);
}(document, ‘script’, ‘facebook-jssdk’));</script>
– HTML CODE —
<div class=“fb-page” data-href=“https://www.facebook.com/Board-of-Genii-1763535667233752” data-tabs=“timeline” data-small-header=“false” data-adapt-container-width=“true” data-hide-cover=“false” data-show-facepile=“true”><blockquote cite=“https://www.facebook.com/Board-of-Genii-1763535667233752” class=“fb-xfbml-parse-ignore”><a href=“https://www.facebook.com/Board-of-Genii-1763535667233752”>Board of Genii</a></blockquote></div>