I created the link in the branch.io dashboard. https://app.zebpay.com/zFAzt88rcT but the link is not working when i opened it in the browser.
I also tried the journey mobile banners they also not changing the button text to the open when I already installed the app on my mobile.
I already added the web sdk code on my website.
The link does not seem to be a valid branch custom link. Please contact integrations#branch.io to troubleshoot this domain and link.
Related
Is it possible to install a pwa from a link?
For example:
you go to a domain name index.html page and view multiple links to different pwa apps.
Then click a link and it installs a pwa to that specific app (with or without) going to a landing page for that app?
As it is now:
if i go to
www.domainname.com/subfolder/index.html
and I have set it up as a installable pwa, it installs and the icon appears on the devices home screen with a link to www.domainname.com/subfolder/index.html..
What im looking for is:
if i go to www.domainname.com/index.html i will see a menu of available apps. if i click an app link it will install the home screen icon and when that is pressed will go to www.domainname.com/subfolder/index,html as the start page, without first going to the app main screen.
I have been experimenting with this, but i cant get it to work, just checking if it is possible, or my code is wrong.
i tried subdomian works, with https for earch subdomain is ok, let me try and post comment later for if subfolder is work
Many mobile apps register themselves as being the way to open certain links. For example, if you have the Medium app installed, then when browsering iOS Safari, if you click on a link to a Medium blog post, it opens in the Medium app.
Is there any way that a website owner can mark up a link in such a way as to force it to open as a web page, not by opening the associated app?
I'm hoping for something like this:
<!-- ⚠️ this does not actually work -->
My blog post
You could use an url shortener, some of them will
Have you tried
<a onclick='window.open("http://yourexternallink.com","_system");'> My blog post</a>
I am building a Cordova Application that allows to browse an Atlassian Confluence site containing navigable diagrams. My diagrams are built with Gliffy and I want to navigate from one page to another via clickable diagram elements. I realized such navigation structure and it works fine in browsers. You can check it out at this link (click on M_Function).
In my Cordova app I am using InAppBrowser and, after a login screen, I am redirecting to a page of my mobile-oriented website (again, an Atlassian Confluence site) this way:
var ref = cordova.InAppBrowser.open('http://51.255.206.207:8090/pages/viewpage.action?pageId=1245261' + page, '_self', 'location=no');
On my website, I have menus and diagrams. When I click on menu items, everything works correctly, but when I click on the clickable shapes from the diagrams, I get an error (the page does not exist).
What's wrong with Confluence/Gliffy links? What's the difference between the app and the browser?
Or, at lease, how do I get to know the URL I am trying to reach from the app?
I just noticed this JavaScript file is embedded in many pages of my site where Disqus comments is enabled.
http://a.disquscdn.com/next/embed/alfie.f51946af45e0b561c60f768335c9eb79.js
Any idea what is its purpose?
I found out that it automatically adds a click event listener to every link (both internal and external links) and the click event does some redirection. It was not a significant problem until I realized the redirection was affecting many links to an external website I have in my site and all of them ended up in the home page.
Its not a matter of my URL's build to the external website in href or parameters as copy pasting the URL directly into browser (no redirection) works fine.
Is this a Disqus feature for tracking or something that can be configured?
It's the "Affiliate links" enabled option in Disqus Setup > Advanced
https://help.disqus.com/customer/portal/articles/851667-affiliate-guide
Updated help article link:
https://help.disqus.com/customer/en/portal/articles/2425431-how-to-disable-affiliate-linking
Affiliate linking is an optional feature that automatically replaces
outbound product links on your site with affiliate links,
To disable or enable affiliate linking, visit the Admin > Settings >
Advanced.
Can I set a link on my site so it will open certain Android app when clicked?
This depends on whether or not the app you want to open is capable of handling a link. If the app has an appropriate <intent-filter> then it could be launched through a link. For example, the Google Play app has a filter for all play.google.com links, and gives the user an option to choose between the browser and Google Play when the linked is clicked.