Questions tagged [firebase-invites]

Firebase Invites gives you the tools you need to turn your current customers into your biggest advocates. With Firebase Invites, your users can share referral codes or their favorite content over SMS or email with a touch of a button, so you can increase your app's reach and retention.

About Firebase Invites

Firebase Invites is a component of the Firebase suite of tools for cross-platform application development.

  • Invite the most relevant contacts with smart suggestions
  • Free email and SMS delivery
  • Powered by Firebase Dynamic Links

Related tags

118 questions
0
votes
0 answers

Limit the number of invites that a user can invite with firebase

I am new to firebase and I wanted to know if it is possible to limit the number of invites that a user can send. I am looking to have something like: private void onInviteClicked() { Intent intent = new AppInviteInvitation.IntentBuilder("An…
Nah Prime
  • 33
  • 1
  • 9
0
votes
1 answer

Firebase Invite SMS not clickable

NOTE: Firebase Invites is deprecated now & it is recommended to use Dynamic links - https://firebase.google.com/docs/invites/deprecation This post is not valid anymore. I tried to implement Firebase Invite following the docs :…
Abhimanyu
  • 11,351
  • 7
  • 51
  • 121
0
votes
1 answer

How to customise the invite dialog sheet in Firebase Invites for iOS

I have integrated the Firebase Invites in my App, which provides only two options SMS & Email. Now I want to share the dynamic link via whatsapp and other social networking channel like facebook and Twitter. I didn't find any solution on developer…
0
votes
2 answers

How to integrate Firebase in ios app using swift?

I want to integrate my app through firebase I follow this : https://firebase.google.com/docs/invites/ios but it shows me error of user must be sign in. AppDeleget : @available(iOS 9.0, *) func application(_ application: UIApplication, open url:…
Prasann
  • 135
  • 1
  • 9
0
votes
0 answers

Firebase Invites: 400 not found

I am trying to use Firebase Invites from React Native. It generates a link of the form "https://mysite.page.link/i/" in the invitation, but does not redirect to the deep link I set while creating the invitation. It gives me a 400 Not Found error,…
0
votes
1 answer

Firebase Invites: Message failed to send

I am trying to use Firebase Invite with React Native. I have followed instructions from rnfirebase.io and Google documentations. I can get to the part of showing the contact list from where I can choose who to invite. But when I press the arrow to…
0
votes
1 answer

Referral/Invite Tracking for Android app distributed from our own server instead of Play Store

We are not distributing our app from Google Play due to some policy violations and instead planning to put it on our own server for direct download. I want to implement invite friends feature in android mobile app. My app user will invite his…
Mayank Kumar
  • 313
  • 2
  • 13
0
votes
1 answer

What is the most reliable method for having isolated user-groups?

The question originally was: How to create a new database instance upon user creation (per user)? While I know that it isn't possible (yet), while I still think it is a good question - because, when looking at documentation alike Sharding and the…
0
votes
0 answers

Android - How to Pull Data From a Dynamic Link

I am using Firebase Dynamic Links and Invitations to invite players to my app. The ultimate goal is for the shared link to contain a unique Table ID that will pull the player directly into the table their friend is currently in. So far, I can…
Paula T
  • 1,212
  • 11
  • 13
0
votes
0 answers

How we use FirebaseInvite functionality of firebase in ionic3

It gives error at FirebaseInvite Not found,I add Plugin of firebase-invite but don't have node package for firebase-invite,so how can I use methode of firebase-invite…
0
votes
1 answer

How to implement Firebase Invites in my Android application?

I want to implement the Firebase Invite Feature, where a user can send a link which is unique to his/her friends and whenever the other receiver installs the app using this link my application recognize it and act accordingly. Now I have searched…
Aman Verma
  • 3,155
  • 7
  • 30
  • 60
0
votes
1 answer

Sending firebase invites on iOS logging in firebase auth using Facebook token only

Is it possible to send Firebase Invites on iOS, Logging in Firebase Auth using a Facebook token as a login provider? On Firebase SDK, documentation is ambiguous wether I need to use a real google account or not.
FilippoG
  • 546
  • 3
  • 16
0
votes
1 answer

Forwarding A User To A Particular Chat Room Using Firebase

Similar to this question. However, I am looking for a way to add a token to the invitation link so that an android application can read such said token and then "automatically" join that user to that particular chat room. However, I haven't found…
user5960886
0
votes
1 answer

How to put Firebase invite builder inside an android activity?

I want to build an android app using Firebase invites so that users can start inviting their friends after starting the app. The issue is the firebase invite opens up as a separate activity without even a toolbar , it does not look like the part of…
0
votes
1 answer

Firebase App Invite

I just implemented the Firebase Invites in my android app. I followed the online documentation as per the API Specs @ https://firebase.google.com/docs/invites/android As per that I implemented the below code in the onActivityResult…