Reputation: 6069
When creating Firebase invite intent I try to add link to iOS app as described in documentation:
intent = new AppInviteInvitation.IntentBuilder(context.getString(R.string.invitation_title))
.setMessage(context.getString(R.string.invitation_message))
.setOtherPlatformsTargetApplication(
AppInviteInvitation.IntentBuilder.PlatformMode.PROJECT_PLATFORM_IOS,
"1059710961")
.build();
"1059710961" and "mobi.appintheair.wifi" both cause the same error:
AppInviteAgent: Create invitations failed due to error code: 3
AppInviteAgent: Target client ID must include non-empty and valid client ID: 1059710961. (APPINVITE_CLIENT_ID_ERROR)
What is the correct format for this parameter?
Upvotes: 1
Views: 984
Reputation: 6069
To get this client ID you have to do the following:
GoogleServices-Info.plist
for iOS app as we download google-services.json
for AndroidCLIENT_ID
(will be something like this 123456789012-abababababababababababababababab.apps.googleusercontent.com
)Add it to builder:
intent = new AppInviteInvitation.IntentBuilder(context.getString(R.string.invitation_title))
............
.setOtherPlatformsTargetApplication(
AppInviteInvitation.IntentBuilder.PlatformMode.PROJECT_PLATFORM_IOS,
"123456789012-abababababababababababababababab.apps.googleusercontent.com")
.build();
Upvotes: 4
Reputation: 51
the client_id is the one in the plist you download from the firebase console for your iOS app
Upvotes: 2