uri-scheme

msLaunchUri not available in IE11

旧巷老猫 提交于 2019-12-13 00:40:45
问题 I'm doing some fanciful work of launching a particular program (created by us) from a website. Currently, I'm still in the research phase, so I'm open to very outlandish suggestions. Basically, our app will open through a "myapp://something" link; something Steam users might be familiar with. However, for usability, we want to safely provide some error scenario if someone clicks such a link without the appropriate program installed. Most browsers simply take you to an unhelpful, full-tab

Access parameters from custom URI scheme in Java application on OS X

对着背影说爱祢 提交于 2019-12-10 10:33:26
问题 I've successfully added a custom URI scheme in info.plist on OS X so my Java 1.7 based application (written in Netbeans) is launched whenever the user enters "myApp:SomeParameter" in their browser: <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleURLName</key> <string>My App</string> <key>CFBundleURLSchemes</key> <array> <string>myApp</string> </array> </dict> </array> I have also successfully added the corresponding registry entry for the application if installed on a Windows machine.

How to cryptographically verify web page requisites?

荒凉一梦 提交于 2019-12-08 08:14:36
问题 How to cryptographically verify web page requisites in HTML? For example, if I have some external resource like an image, a style sheet or (most importantly) a script on a (potentially untrusted) content delivery network, is it possible to force the client browser to cryptographically verify the hash of the downloaded resource before usage? Is there some HTML attribute or URL scheme for this or does one manually have to write some JavaScript to do it? The rationale is that providing the

Install a service handler for URI scheme from webpage

[亡魂溺海] 提交于 2019-12-03 03:52:43
问题 When accessing Google Mail or Google Calendar from Chrome, small icon appears in addressbar allowing to install custom service handler for URI scheme (marked with red square in picture). Tooltip for icon is: This page wants to install a service handler . When I click icon and allow Google Mail to handle mailto: links, all mailto: links are opening in Chrome. Is it possible to create webpage that will be able to install custom handler for my custom URI scheme just like Google Mail do? 回答1: For

Google 400 Error: invalid request Custom scheme URIs are not allowed for 'Web' client type

安稳与你 提交于 2019-11-28 09:39:07
When I am signing into Gmail in my iOS App, I am getting the below error (screenshot) and the sign-in fields do not appear. We are loading the sign-in screen in a WKWebView. We are using a custom URI redirect but why is google throwing this error now. What are the alternatives to a custom URI? Swift 2.3 project Using OAuthSwift v0.6.0 cocoapod This started quite recently only in the past week or so I believe something changed with Google's APIs. I have read that google is deprecating webviews for OAuth and will block requests on April 20, 2017. As seen here in a Google Developers Blog: https:/

How do I link to wechat from a webpage?

别说谁变了你拦得住时间么 提交于 2019-11-28 07:44:21
Whatsapp allows you to link to a new message via <a href="whatsapp://send?text=The text to share!" data-action="share/whatsapp/share" class="Share-link m-whatsapp"> How do I do the same thing with WeChat ? WeChat does have a URI scheme that can be used from a browser. The scheme prefix is weixin:// . There are a few URIs that can be used with this: weixin://dl/stickers weixin://dl/settings weixin://dl/posts weixin://dl/moments However, in answer to your question specifically, there is one where you can chat to a contact specifically: weixin://dl/chat?{toID} You will need to replace {toID} with

Add Whatsapp function to website, like sms, tel

浪尽此生 提交于 2019-11-27 10:36:48
I have a website that a lot of people view on mobile. I have link for : Call and SMS and I want to add one for Whatsapp, so a user can click the whatsapp link I create and start a conversation with me. If this is possible can someone point me in the right direction on how? Rahul Mamtani below link will open the whatsapp. Here "0123456789" is the contact of the person you want to communicate with. href="intent://send/0123456789#Intent;scheme=smsto;package=com.whatsapp;action=android.intent.action.SENDTO;end"> Check this link out Launching Your iPhone App Via Custom URL Scheme and more on the

Support for other protocols in Android webview

你说的曾经没有我的故事 提交于 2019-11-27 03:59:29
I've created a web view app, the page that is displayed features market:// links but upon clicking them I get the 404 screen along with the error that the protocol is not supported. I've tried looking through documentation but was unable to find anything relating to this. Any help is much appreciated. For me the JavaScript thing wasn't a solution as the HTML is not under my control. So if you need to control this from the application side, then there is a relative simple solution: Derive from WebViewClient and inject the implementation using WebView.setWebViewClient() . All you need to

What URI protocols exist on Windows Phone 8?

跟風遠走 提交于 2019-11-27 03:41:04
I have scoured the web for a complete list of URI protocols (XXX://) to open different apps in Windows Phone 8. I have found some lists but only with a very small amount of protocols. I am with this wiki-post hoping to make a complete list of protocols and at least cover all the stock apps in Windows Phone 8. There are many partial lists for example: http://developer.nokia.com/Community/Wiki/URI_Association_Schemes_List http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj662937(v=vs.105).aspx However I think it would be great if we could compile a big list of all URL schemes. Even

Google 400 Error: invalid request Custom scheme URIs are not allowed for 'Web' client type

南笙酒味 提交于 2019-11-27 03:05:06
问题 When I am signing into Gmail in my iOS App, I am getting the below error (screenshot) and the sign-in fields do not appear. We are loading the sign-in screen in a WKWebView. We are using a custom URI redirect but why is google throwing this error now. What are the alternatives to a custom URI? Swift 2.3 project Using OAuthSwift v0.6.0 cocoapod This started quite recently only in the past week or so I believe something changed with Google's APIs. I have read that google is deprecating webviews