I am stuck trying to use the authenticated referrals section in the Auth Dialog section of the app developer. I have setup setup my app, and I have some code to login, and perform some checks, but whenever the authorize app screen appears, the data I entered into the Authenticated Referrals Section is never shown, I only see the “The App will receive: Your basic data.”
I have tried disabling and re-enabling the Enhanced Auth Dialog under the Advanced section of the app, have tried clearing my cache, and even resetting my secret key. I’ve browsed plenty of sites/forums, but haven’t found any solution. What am I missing?
Any suggestions would be great
Are you sure that the auth dialogs you’re seeing are actually Authenticated Referral dialogs?
If you navigate to your app manually that’s not an authenticated referral and your code needs to manually call the auth dialog – Authenticated Referrals appear when users click links to your app from requests, news feed stories, etc. – more info is in the documentation
If users are landing on your app and you’re not directing them to the correct set of permissions in the auth dialog – see the Authentication docs to see how to proceed – basically you redirect them to the Auth dialog, with a
scopeparameter containing the permissions you need, then complete the auth flow when they come back to your app (how you do this depends on which SDK you use)