firebase“长链接不可解析”

4c8rllxm  于 2023-04-22  发布在  其他
关注(0)|答案(3)|浏览(137)

我想用firebase和REST API缩短一个longLink,但我得到了以下响应,我不知道出了什么问题:
回复:

{
        "error": {
            "code": 400,
            "message": "Long link is not parsable: https://www.google.de [https://firebase.google.com/docs/dynamic-links/rest#create_a_short_link_from_parameters]",
            "status": "INVALID_ARGUMENT"
        }
    }

我是这么做的
请求:https://firebasedynamiclinks.googleapis.com/v1/shortLinks?key=hereismyapikey
身体看起来像这样:

{
   "longDynamicLink": "https://www.google.de",
   "suffix": {
    "option": "SHORT"
  }
}

我尝试了第一次与真实的的网址,我想缩短.同样的错误.比与谷歌和有和没有http(s).我的选择,并希望有人看到我做错了这里.

**编辑:**完整的 Postman 请求:

"item": [
            {
                "name": "shortLinks",
                "request": {
                    "method": "POST",
                    "header": [
                        {
                            "key": "Content-Type",
                            "value": "application/json"
                        }
                    ],
                    "body": {
                        "mode": "raw",
                        "raw": "{\r\n   \"longDynamicLink\": \"www.google.de\",\r\n   \"suffix\": {\r\n    \"option\": \"SHORT\"\r\n  }\r\n}"
                    },
                    "url": {
                        "raw": "https://firebasedynamiclinks.googleapis.com/v1/shortLinks?key=xxx",
                        "protocol": "https",
                        "host": [
                            "firebasedynamiclinks",
                            "googleapis",
                            "com"
                        ],
                        "path": [
                            "v1",
                            "shortLinks"
                        ],
                        "query": [
                            {
                                "key": "key",
                                "value": "xxx"
                            }
                        ]
                    }
                },
                "response": []
        }
    ]
yfjy0ee7

yfjy0ee71#

您使用的是创建动态链接的简单方法,大致相当于手动创建动态链接:https://firebase.google.com/docs/dynamic-links/create-manually
在文档中,如果您仔细查看示例中传递的链接,您将看到以下模式:

https://your_subdomain.page.link/?link=your_deep_link&apn=package_name[&amv=minimum_version][&afl=fallback_link]

因此,您应该根据此设置输入链接的格式,或者使用参数创建,这些参数在json中具有很好的参数分解:
https://firebase.google.com/docs/dynamic-links/rest#create_a_short_link_from_parameters
下面是从参数创建firebase动态链接的API参考:
https://firebase.google.com/docs/reference/dynamic-links/link-shortener#parameters

hwamh0ep

hwamh0ep2#

我发现JSON参数方法更容易。

var body = {
  "dynamicLinkInfo": {
    "dynamicLinkDomain": "yourcustom.page.link",
    "link": fileUrl
  },
  "suffix": {
    "option": "SHORT"
  }
};

然后如果你使用Node. node-fetch包REST调用将像这样工作:

var fetchFileUrl = fetch(YOUR_SHORTLINK_URL, { 
      method: 'POST',
      body: JSON.stringify(body),
      headers: { 'Content-Type': 'application/json' },
  }).then(function(response){
    return response.json();
  });
wbgh16ku

wbgh16ku3#

您需要在longDynamicLink参数中包含Firebase动态链接使用的url。如果您的动态链接使用https://myshorter.test url,则longDynamicLink将变为https://myshorter.test?link=,后跟您的url。
举个例子

{
   "longDynamicLink": "https://myshorter.test/?link=https://stackoverflow.com/",
   "suffix": {
     "option": "SHORT"
   }
}

相关问题