I have a cross-platform application (iOS / Android / Web) that has a “Share” feature. The Share function works fine on iOS and web builds, but on the Android platform, Facebook always shows a “security check” to the user before submitting the Share form:

The arguments passed to FB.Feed are as follows:
- link:
"http://apps.facebook.com/<my_app_id>" - linkName:
"Solitaire" (my application name) - Image:
"http://casual-solitaire.herokuapp.com/Resources/Facebook/ShareIcon-128x128.png"
There are two strange things here:
- Captcha only happens on Android
- If I use exactly the same parameters in
FB.Feed , but change <my_app_id> to another application, it disappears (the identifier of the application from another application that I published checks for me).
It looks like my application id is blacklisted, does anyone know what I can do to fix this?
source share