AppsFlyerSDK / appsflyer-flutter-plugin

Flutter Plugin for AppsFlyer SDK
MIT License
142 stars 111 forks source link

AppsFlyer SDK generateInviteLink() API is not working. Either Success or Error callbacks not working (Not Getting called) #284

Open mateendev3 opened 10 months ago

mateendev3 commented 10 months ago

Describe the bug In Flutter AppFlyers SDK, I'm not able to receive the deep link that I'm creating. Because both error and success callback are not called.

To Reproduce In below code, the callback are not calling. But In console. The SDK is printing the deeplinking. I'm not able to receive the link because my provided callbacks are not calling.

AppsFlyerInviteLinkParams appsFlyerInviteLinkParams = AppsFlyerInviteLinkParams(
      campaign: 'User-Invitation',
      channel: 'Invitation',
      baseDeepLink: 'https://name.oneclick.me',
      referrerName: name,
      customerID: userId,
      customParams: {
        'deep_link_value': userId,
      });

appsflyerSdk.generateInviteLink(
  appsFlyerInviteLinkParams,
  (result) {
    print('-------->' + result);
  },
  (error) {
    print('-------->' + error);
  },
);
github-actions[bot] commented 10 months ago

👋 Hi @mateendev3 and Thank you for reaching out to us. In order for us to provide optimal support, please submit a ticket to our support team at support@appsflyer.com. When submitting the ticket, please specify:

snoopdoggy322 commented 2 months ago

same issue