Difference between revisions of "Native App URI Handlers"

From MgmtWiki
Jump to: navigation, search
(Solutions)
(References)
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Full Title or Meme==
 
==Full Title or Meme==
  
A [[Native App]] can register to receive HTTP calls from the browser on the [[User Device]],
+
A [[Native App]] can register to intercept [[URI]] calls (eg HTTP and other schemes) from the browser on the [[User Device]],
  
 
==Context==
 
==Context==
Line 27: Line 27:
 
#IETF RFC 8252 ''OAuth 2.0 for Native Apps'' https://tools.ietf.org/html/bcp212#section-7.2
 
#IETF RFC 8252 ''OAuth 2.0 for Native Apps'' https://tools.ietf.org/html/bcp212#section-7.2
 
#Apple ''App Store Review Guidelines'' https://developer.apple.com/app-store/review/guidelines/
 
#Apple ''App Store Review Guidelines'' https://developer.apple.com/app-store/review/guidelines/
 +
#[https://developer.android.com/guide/components/intents-filters#imatch Android Intents and Intent Filters]
 
#[https://docs.microsoft.com/en-us/windows/uwp/launch-resume/web-to-app-linking Microsoft web-app linking].
 
#[https://docs.microsoft.com/en-us/windows/uwp/launch-resume/web-to-app-linking Microsoft web-app linking].
 
#[https://www.oauth.com/oauth2-servers/redirect-uris/redirect-uris-native-apps/ description of use of this technique] in [[OAuth 2.0]] implementations.
 
#[https://www.oauth.com/oauth2-servers/redirect-uris/redirect-uris-native-apps/ description of use of this technique] in [[OAuth 2.0]] implementations.
Line 32: Line 33:
 
[[Category:Glossary]]
 
[[Category:Glossary]]
 
[[Category:Authentication]]
 
[[Category:Authentication]]
 +
[[Category:Agent]]

Revision as of 16:57, 6 April 2019

Full Title or Meme

A Native App can register to intercept URI calls (eg HTTP and other schemes) from the browser on the User Device,

Context

  • Many web applications would like to improve their User Experience by installing a Native App on the user device to provide more performant responses to user input. This has been enabled on most User Devices by operating system enhancement that allow the registration of the web site's URL and intercepting HTTP requests so that they can be partially or fully handled on the local device.

Problems

Solutions

References

  1. Native App general page on this wiki
  2. Native App Security page on this wiki
  3. Native App Privacy page on this wiki
  4. W3C page on web apps best practices as of (2010-12-10).
  5. IETF RFC 8252 OAuth 2.0 for Native Apps https://tools.ietf.org/html/bcp212#section-7.2
  6. Apple App Store Review Guidelines https://developer.apple.com/app-store/review/guidelines/
  7. Android Intents and Intent Filters
  8. Microsoft web-app linking.
  9. description of use of this technique in OAuth 2.0 implementations.