I have domain name and deployed the apple-app-site association file on sever as well.In web site I don't have much functionality , I will send a mail to all user that will have the dynamic link. How to create the dynamic link ??
There is no special way to create a Universal Link. If you have registered the domain with you AASA file then any link with that domain that follows your AASA paths will open your app. You can just dynamically create urls with yourdomain.com as the domain and they should work accordingly. As Abhishek commented earlier, I'd highly recommend using Branch since you can easily bulk create links and the links are much stronger than stand alone Universal Links. They also have a web SDK that can generate links.
Related
When we're using Firebase dynamic links do we have to use the page.links domain hosted be google or can we use our own host and domain?
I want the functionality of installing an app from a link and then processing the custom url on first run but I want the apple-app-site-association file to be hosted on my own server.
Is this possible?
If not, is this functionality possible without firebase or branch?
Right now you can only use a subdomain of page.link on Firebase Dynamic Links but please to file a feature request to bring your own domain name: https://firebase.google.com/support/contact/
I have a functional product of iOS App, with the domain that branch.io give me, and works very well.
Name is for example: t55s.app.link But the client said me that is possible to change t55s for other characters,
for example: demo.app.link If possible?, When put “demo.app.link” in the app custom domain, is ok but the link https://demo.app.link.abc/XXX link said me “file not found”.
How to put custom domain?
Alex from Branch.io: absolutely. Take a look at the documentation page for changing subdomains
I have implement Universal Links in my project, but the testing server do not have domain name.
By following the steps from official documentation:
https://developer.apple.com/library/ios/documentation/General/Conceptual/AppSearch/UniversalLinks.html
I fill in "applinks:{ip address}" into Associated Domains, but it not work.
Is there must use domain name for Universal Links feature?
Unfortunately, Universal Links are resolved during domain name resolution so they will not support bare IP addresses.
Yes, you'll need to fill in a domain name here - this should be the domain or subdomain you're wanting to use for Universal Links. You can also verify your domain with this tool to make sure it's serving https etc, and see your app's bundle identifier there:
https://limitless-sierra-4673.herokuapp.com/
I hope this helps!
I am using umbraco 7.1.3.
My requirement is to create another sub-domain in main site dynamically as per user request.For example I have implemented umbraco cms for my site "ww.xyz.com" & I am updating content through umbraco login. Now I want to create sub-domains for different clients as per their request... like : "www.xyz.com/client1", "www.xyz.com/client2" and so on...
Now all sub-domain site should have it's own umbraco framework, so client-site (sub-domain owner) can login and update their information respectively.
To achieve this requirement I implemented following steps...
First I register a umbraco website in IIS and configure it, and that worked properly.
Then I register another umbraco website in IIS and configured it, and that also worked properly.
Now to implement sub-domain logic...
I simply copied 2nd website's folder in to first website folder. Then convert that folder to application through IIS.
As per my expectation this should work, As I have already done the same in asp.net and it worked.
But with umbraco I am facing issue like "Invalid key value".
I think the issue is related to some umbraco configuration, but I am not able to figure it out.
Thanks & Regards
A bit of an open door, but since I don't see it mentioned in any of the comments and it's a bit hidden away in Umbraco 8. Have you tried setting the urls in the Cultures and Hostnames section?
Note: you get to this by going to "Content", in the content tree right click on your homepage and now you get several extra options which are normally hidden away with also the very useful Hostname and Cultures option which allows you to support multiple urls.
I need to create a few urls which for my gwt application. e.g currently login screen is
http://127.0.0.1:8888/abc.html?gwt.codesvr=127.0.0.1:9997
http://example.com/abc.html?gwt.codesvr=127.0.0.1:9997
i want to change it to
http://127.0.0.1:8888/accounts
http://example.com/accounts
so when user directly open this link
I have developed this applicatoin in gwt with jdbc
looking forward to your reply
I suggest you take a look at how GWT handles History. You can save states of your application by using History tokens(For ex: ../modulename#user1, ../modulename#user2) and by parsing these tokens you can direct your user to appropriate section of your application. Since GWT applications run on a single html page I beleive this would be the correct approach to implement your functionality. Last but not least these states are bookmarkable and supports browsers back button as well.
By the way about changing the Url, ?gwt.codesvr=127.0.0.1:9997 is added to the url in development mode and will not appear in production mode when you compile deploy your application.
Just create a subfolder named accounts and move the index.html file there. The webserver should not automatically serve the index.html file, when someone requests to see the folder.
You can create the history and add the token in them:
private static final String abc = "account";
History.newItem(abc ,true);