Simple Facebook Graph does not work in Meteor Android App

HI,

my meteor app puts in an img tag a link to a facebook picture using the following url

My html code looks like

<img class="avatar" src="http://graph.facebook.com/10152879616239775/picture" alt="avatar">

and it shows

avatar

When i use my app in my Android device i don’t see anything, if i use the browser in my mobile the link works normally.

Could you please explain me why? Do you have a solution for this issue?

Thanks a lot.

You need to use App.accessRule()

Something like App.accessRule(“http://graph.facebook.com/*”);

1 Like