Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

List of URL options
#5

Just a heads up that there is no master list of URL schemas. Any installed application can register a bunch of them and the OS comes with some of its own. We'll post the most popular ones, but there is no way to create an exhaustive list. Developers in the Apple ecosystem, specially those shipping mobile apps, kinda coalesced around a spec of their own called x-callback. You can learn more about it on:

https://x-callback-url.com/

Many iOS/iPadOS/macOS apps support these URLs.

The most common schemas are:
  • "http" and "https" for websites.
  • "sms" for opening the messaging app.
  • "mailto" for opening the email client.
  • "tel" for opening the phone dialer.

A non-exhaustive list of schemes can be seen on https://en.wikipedia.org/wiki/List_of_URI_schemes

The objective of those URL schemes is to open another application. Such schemes can't be used to initiate a call or send an email, all they do is open another app with maybe the information pre-filled. Accepting URL arguments and so on is at the discretion of the opening app, there are no guarantees.

Also, there is no way to verify if the chosen URL can be opened. Launching a third-party app scheme such as `x-notion` or `things` will fail if those apps are not installed and there is no way for your app to know. Because of that it is better to offer launching such URLs as an additional feature at the user discretion or when you're sure the user has an application to handle the scheme.
Reply


Messages In This Thread
List of URL options - by clarencemartin - 02-24-2023, 07:36 PM
RE: List of URL options - by marktalluto - 02-27-2023, 08:35 PM
RE: List of URL options - by clarencemartin - 02-27-2023, 08:44 PM
RE: List of URL options - by marktalluto - 02-28-2023, 12:53 AM
RE: List of URL options - by agarzia - 02-28-2023, 11:26 AM
RE: List of URL options - by clarencemartin - 02-28-2023, 11:34 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)