Is there a REST API to update the Deep link property of Firebase DynamicLink?
The Google guide only shows the process to create a short link , but there is no mention of how to update the deeplink once created.
Edit from Cyril DD :
Using the Firebase website, it's possible to update a dynamic Link and when looking at the network tabs in the console, it calls an API https://firebasedurablelinks-pa.clients6.google.com/v1/updateDurableLink
where it's possible to completely update the properties of an existing dynamic link.
But then I'm left with two problems:
- I can't see to figure out a way to make this request work in Postman
- I need to update a link that was generated with the
https://firebasedynamiclinks.googleapis.com/v1/shortLinks
API, and therefore does not appear in the list of links in the firebase console
PATCH https://firebasedynamiclinks.googleapis.com/v1/{{url_encoded_dynamic_link_url}}
but Google doesn't seem to have APIs to patch a link. What do you mean by "modify the links using the native solutions" ? I'm interested / that could be the solution I am looking for – Luana