Can't share anymore to Messenger from my app
1

All my users are getting frustrated because I currently can't share on messenger anymore with iOS.

I have an app that is sharing sounds into conversations (Messenger, Whatsapp, ...)

Since 2-3 weeks I receive a large amount or request saying they can't share on Messenger anymore.

I tried to update the FBSDK, FBSDKMessenger, i went on all of those links: - https://developers.facebook.com/docs/ios/getting-started, - https://developers.facebook.com/docs/ios - https://developers.facebook.com/docs/sharing/ios/share-button#code

Updated my pod file, tried to find some information about this we can't find anyone or anything about this...

Please can you help me fixing this ? I have no idea how what to do anymore ?

What information do you need to help me ?

Antoine
Asked about 4 years ago
Antoine

Here are my pods:

  
pod 'Firebase/Core'
pod 'Firebase/AdMob'
pod 'Google-Mobile-Ads-SDK'

pod 'FacebookCore'
pod 'FacebookSDK'
pod 'FacebookSDK/LoginKit'
pod 'FacebookSDK/ShareKit'
pod 'FacebookSDK/PlacesKit'
pod 'FBSDKMessengerShareKit'
March 27 at 9:34 AM
Antoine

How I create my button:

let button = FBSDKMessengerShareButton.circularButton(with: FBSDKMessengerShareButtonStyle.blue, width: cellWidth-30)
March 27 at 9:35 AM
Antoine

How I share my audio file:

let audioNsData = NSData(contentsOf: audioUrlData)
FBSDKMessengerSharer.shareAudio(audioNsData! as Data, with: nil)
March 27 at 9:36 AM
Antoine

NB: I have unresolved identifier on FBSDKMessengerSharer & FBSDKMessengerShareButton

March 27 at 9:36 AM