I am basically trying to open wechat app from mobile web browser for payment. But any of the Deeplink url scheme I tried like these:
https://spacekid.me/weixin-url-schemes/
https://stackoverflow.com/a/35576003/3326275
However all of them giving me following error though application opens:
I tried to use any of the urls, all of them are giving me same error as above. I want to open payment URL in web app. Leave that alone, any of the links.
Any one knows :
Why am I facing error, is there any way to open any deeplink without error.
How to open payment URL from browser to app so he can pay via app? Note that I able to generate business payment link such as weixin://wxpay/bizpayurl?pr=psg07It , but how to open in app without facing error as in image above.
Thanks
Related
So I have a site that uses a native app to authenticate a user. This is how it works.
I get a token and start polling the app service to check when the user has authenticated.
I use a URI appname:// to open the app for the user, and I provide a redirect link to the app, so that once the authentication is done the user is redirected back to the site.
This works perfectly fine on iOS safari, and using an anchor tag, solved the issue of opening the site in a new tab.
The problems I am facing now is when the user is using the site from Chrome for iOS.
The first problem was that the redirect link was opening in Safari instead of Chrome, however I fixed this by adding googlechrome:// before the redirect url, so having something like this googlechrome://mysite.com#anchor
However I still have the issue that googlechrome://mysite.com#anchor always opens in a new tab, which obviously reloads the site, thus the polling would not have been started, but if I manually go back to the previous tab, the polling is still ongoing and the user is logged in.
My question is: Is there a way to use this kind of URI redirect for Chrome for iOS to open in the same tab?
I found the solution to this.
So basically if you just put googlechrome:// without specifying a url after it, this will open chrome for iOS in the current tab.
I'm new to PWA (Progressive Web App) and using Angular. I have configured a service worker module as described in the Angular docs. Everything is working fine. On Android, the user is able to add the app to the home screen and it is working on offline as well. But I'm unable to find the functionality to open the saved web app by triggering an action in the browser.
Let's say https://pwa.com is a domain and I want to open saved app (on the home screen) from another domain like https://example.com or from another route on the same domain like https://pwa.com/openApp by clicking on a button. Is there any possibility to do this?
Looks like this is possible for Android: https://developers.google.com/web/fundamentals/integration/webapks
But doesn't seem like it works for iOS
https://medium.com/#firt/progressive-web-apps-on-ios-are-here-d00430dee3a7
I seen few mails with links opens their respective Applications if installed otherwise opens link in browser.
Searched for same result and got this link.
Javascript function not working in html content, I have read that many mail client do not support javascript due to security reason.
HTML with href link of custom url Scheme working fine, if app installed on device. But app not installed on device then what to do ?
App name
How to handle if app not installed on device how to open browser with respective link ?
I am using Parse for JavaScript, and is working with the ionic framework within the Intel XDK.
I am trying to incorporate social media login, where users are able to signin using facebook.
I generally know how to navigate this but my main concern is the following:
I am using facebook for javascript where it requires a URL, and when that URL is not accessible it doesn't work. Hence, on an iphone or android I cant use facebook yet.
The specific error I get is the following:
Warning
Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a subdomain of one of the App's domains.
What have I done as far?
I went over the following guide thoroughly:
http://www.benjamin.my/how-to-set-up-facebook-connect-plugin-and-parse-com-in-ionic-phonegap/
It does mention near the end of the guide that
You may have to add an iOS setting or Android setting too eventually when you deploy to either platform.
and this is the part where I am having issues, and for a while.
I have also looked into:
http://shatter-box.com/knowledgebase/facebook-functions-for-cordova-crosswalk-phongegap/
but I am confused in how I can grab the android hashtag. I am not using eclipse, but working within the xdk.
I'm trying to implement the official Twitter and Facebook share buttons in my Cordova/Phonegap app, and I'm running into major difficulties with them. Both of them attempt to load an iframe element to display their buttons, which works, but clicking either of them causes them to open in the Webview, with no way to open them instead in the ChildBrowser. This becomes an issue when the user is done sharing but can't go back to the app due to a lack of navigation buttons.
Is there some way to open a list of URLs in ChildBrowser by default instead of Webview?
Well you can use the:
ChildBrowser.showWebPage();
command to open non-white listed URL's.
Coming in 2.3.0 we will overload window.open() in so that you can specify whether or not you want the url opened in the main web view, the OS browser or the special in app browser that does not have access to the Cordova API.