How to Customize Domain in Firebase Dynamic Link(FDL)? - firebase-dynamic-links

I went through Firebase Dynamic Link(FDL) official documentation and migration guide but could not find any way to use a custom domain.
All I can confirm is we can customize subdomain but not the domain. i.e we can use https://example.page.link/... but not https://example.com/....
Is it possible to have the custom domain? It would work for me if they're providing custom domain support to premium Google API accounts.

I got an update from Firebase support that they have just released a new update to customize domain in the dynamic link in March 2019. Refer documentation.

Related

Using same domain name for Firebase Dynamic Link and Wix website

I already have a website in Wix that uses a domain that I owned (e.g www.abc.com). At the same time, I wanted to use Firebase Dynamic Link. Is it possible for me to continue to host my website in Wix using the domain and use Firebase Dynamic Link that is set up to the same domain (using www.abc.com for Firebase Dynamic Link)?
I have the same issue with you. I need use firebase dynamic link to my app or website. But I can't move my website A record to firebase since I still need wix services. So I created a subdomain in my wix a record, and point that a record value to firebase host, either with A host or txt, after a few hours, I am able to use it from firebase. Just remember don't change your original WIX A record. Then you should be able to use subdomain.abc.com as dynamic link, also not mess up with original wix service.

Firebase Dynamic Link Custom Domain Setup URL patterns to whitelist Error

My custom domain https://mysub.mydomain.com is registered to Firebase Hosting correctly and I can create dynamic link with using my custom domain.But 3 warning occurs and IOS dynamic link is not open my IOS App.
If I use google default domain "xxx.page.link" , everything is ok.
The dynamic link has 3 warning(s)
We could not find Android package name 'xxxxx' in your Google project. Learn more.
We could not find bundle ID 'xxxxxxx' in your Google project. Learn more.
There is no configuration to prevent phishing on this domain https://mysub.mydomain.com/example. Setup URL patterns to whitelist in the Firebase Dynamic Links console. Learn more.
Issues about package and bundle should be fixed in firebase console project settings. You need to check that your iOS and android apps listed here have package name and bundle Id.
Last issue warns you about whitelisting your domains so that nobody could create dynamic links for you app passing links to random domains.
To handle it you need to tap on three dots near the add dynamic link button in firebase console and add all you domains (regex accepted) that can be used in your dynamic links.

can we use firebase dynamic link for website

Can we use Firebase Dynamic Links as own URL shortener for a website? Will it work in mobile devices. If I build Do Follow link in Shortened URL (l.andrimo.com/xyz) is this transfer authority like goo.gl
Firebase Dynamic Links can be used as a URL shortener for web sites. From the blog post announcing the turn down of goo.gl:
Firebase Dynamic Links are smart URLs that allow you to send existing and potential users to any location within an iOS, Android or web app.
Whether Firebase Dynamic Links suits the needs of your use-case, only you can determine.

How to use Amazon MWS API

I have used APIs that are hosted somewhere like Google custom search APi
However I need to use Amazon MWS API for next project.
As I searched on Google there is no hosted version and neither details about how to host one such.
Please guide me about using this API.
I'm not sure I completely understand what you mean about a "hosted" version, but everything related to Amazon MWS is locatated here: https://developer.amazonservices.com/
The developer guide: http://docs.developer.amazonservices.com/en_US/dev_guide/index.html
The scratchpad: http://docs.developer.amazonservices.com/en_US/scratchpad/index.html
The seller forums: https://sellercentral.amazon.com/forums/forum.jspa?forumID=35&start=0
So, first off you are not alone. Trying to figure this out has drove me nuts.
I am pretty new to programming and web apps.
You need a Professional Selling Account ($39.99/month)
https://developer.amazonservices.com/ --->> Sign up or Manage MWS
You need to register as a developer as well.
You are looking for "Client Library".enter image description here
There is a different library for each of the APIs and their respective languages.
You must be logged in to view the libraries i believe

How to create a WebHook with WCF to GitHub Enterprise?

I wanna create a WebHook to integrate with a server GitHub Enterprise. I want to use WCF to create this service, but I don't found a tutorial or step by step. This is my first work with WebHooks, and I did not found the model of the structure of the service to integrate with GitHub.
Anybody have a solution, example or the way to developer this? What methods, parameters and names I need use? The documentation of GitHub is not clear to me.
Thanks.
The methodology to create webhooks in the UI on earlier versions of GitHub Enterprise is very similar to GitHub.com and is now identical on GitHub Enterprise 11.10.340 and later.
Using the UI is a case of browsing to the repository in question, select the "Settings" icon on the right, select "Service Hooks" and configure the appropriate hook. (The wording has changed slightly in GitHub Enterprise 11.10.340 to match what you see on GitHub.com).
If there isn't already a predefined service, a standard "WebHook URLs" hook should do the trick. This will POST the push payload to the URL you enter here.
You can also create the webhook using the API. If you're not running GitHub Enterprise 11.10.340 or later, you can refer to our archived documentation at https://developer.github.com/enterprise/11.10.320/, specifically https://developer.github.com/enterprise/11.10.320/v3/repos/hooks/ for how to use the API to create a webhook. If you're running GitHub Enterprise 11.10.340 or later the documentation at https://developer.github.com/webhooks/ applies to these versions of GitHub Enterprise.
You'd then need to ensure the recipient of this POST knows how to process the payload and act upon it.
A good service to use to check the payload from any webhook is http://requestb.in/.