我正在尝试从React Native Firebase中创建一个简短的动态链接。
我已经在Firebase控制台上添加了所需的链接。 我正在尝试使用动态链接库在手机上创建短链接:
const link = await dynamicLinks()
.buildShortLink(
{
link: 'https://abc.(com)/welcomeShared?invitedBy=1234',
domainUriPrefix: 'https://abc.page.link/welcomeShared',
social: {
descriptionText: 'test description',
title: 'Download with my link!',
},
},
'DEFAULT',
)
我的进口货
import dynamicLinks from '@react-native-firebase/dynamic-links';
我能够创建普通链接(.buildLink),但是当我尝试创建缩短的链接时,出现此错误:
[Error: [dynamicLinks/build-failed] com.google.android.gms.common.api.ApiException: 400: Cannot shorten a short Dynamic Link: https://abc.page.link/welcomeShared?sd=test%20description&st=GET%20WITH%20MY%20LINK!&link=https%3A%2F%2Fabc.co%2FwelcomeShared%3FinvitedBy%1234[https://firebase.google.com/docs/dynamic-links/rest#create_a_short_link_from_parameters]]
我仅在以前版本的react-native-firebase上发现了一种错误情况:
Firebase Dynamic Link Cannot shorten a short Dynamic Link
提前谢谢!