8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Custom URL Schemeに使える文字列

Last updated at Posted at 2019-03-07

URL Schemeには使える文字列が定められている

RFCによって定められています
scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )

文字列で始まり、n個以上の文字,数字,ハイフン,ドット,プラス のみ

※アンダースコアやスラッシュは使えません

ハイフンの代わりにアンダースコア(_)やスラッシュ(/)を使いがちですが、無効なスキームになってしまうので気をつけるように
ex... sample_app://, sample/app:// などはNG

8
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?