From d6543562bf471d70f861e627d0ae25299fbae4c1 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Sat, 7 Mar 2020 16:32:14 -0800 Subject: [PATCH] Remove `verify` from examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9afe6d8..870c5ca 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ See the [MapKit JS Documentation](https://developer.apple.com/documentation/mapk Generate a token with the default expiration (1 hour) and verify the token works: ``` -$ npx mapkitjs-token --kid ABC123DEFG --iss DEF123GHIJ --key secrets.p8 --verify +$ npx mapkitjs-token --kid ABC123DEFG --iss DEF123GHIJ --key secrets.p8 Token Information: Key Id (kid) ABC123DEFG @@ -64,7 +64,7 @@ Token [token] Generate a token with a 10 year expiration, verify, and copy directly to clipboard (OSX): ``` -$ npx mapkitjs-token --kid ABC123DEFG --iss DEF123GHIJ --key secret.p8 --exp 10y --verify --stdout | pbcopy +$ npx mapkitjs-token --kid ABC123DEFG --iss DEF123GHIJ --key secret.p8 --exp 10y --stdout | pbcopy ``` ## Compiling