Facebook app requests not showing on iOS devices?

I sent the app from the iPad app to the test Facebook account via the Facebook API. When I log into the test account on my PC, there is an application request.

When I log into the test account on my iPad (either through Safari or through the Facebook app), I see the number “1” next to the “Application Center” tab, but when I click it and go to the Application Center, there is no request. In fact, I don’t see areas of the App Center applications devoted to requests for Facebook for iOS - there are only Social Picks and Top Apps there. Any explanation for this?

+8
ios facebook
source share
2 answers

This is due to a bad setup of the Facebook app settings page. When you configure the application, you need to make sure that the following is set correctly.

Go to developers.facebook.com , then select "Applications." Edit your application and complete the following command.

  • iOS App Bundle (I don’t think it is necessary, but fill it out, this is the package identifier from Xcode (com.companyname.appname))

  • The iPhone / iPad App Store identifier is the BASIS, one of which must be filled in with a valid app store identifier. You get this when you create an app with iTunes Connect. If you create an application and fill in the details right up to the moment when you request that you send the binary file, it will generate what Apple calls Apple ID (or iTunes Id?). It is just a long integer value. This is not necessary for the corresponding application, if you already have applications in the application store, just log into iTunes and use the existing one for testing.

  • Configured for iOS SSO - Enabled

  • Configured for deep binding - enabled

The only functionality you get from Facebook when a user clicks on an iOS app notification is to redirect the user to the app if it is installed, or to the App Store if not. In addition, if you want your app notifications to appear on your desktop, you'll need the Canvas URL in the “Facebook App” section.

In my tests, I had to have a canvas URL in order to receive iOS notifications, but I'm not sure if this is a bug with Facebook or the intended behavior, so if it doesn't work with iOS turned on, turn on the Facebook app and stick to a random URL if you don’t have it.

+34
source share

I just thought that there could be another reason for this symptom: if your application has a location restriction (available only in some countries), the user who receives the request must be in that country (for example, I had to contact the mine through GeoEdge).

0
source share

All Articles