adapt package dependency

This commit is contained in:
Luis Riegger 2020-12-13 10:23:59 +01:00
parent 295c9b01a1
commit 49e3fdf191
2 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ You can get a token using the following two curl commands:
# This will trigger the email sending # This will trigger the email sending
curl -X "POST" "https://mykobold.eu.auth0.com/passwordless/start" \ curl -X "POST" "https://mykobold.eu.auth0.com/passwordless/start" \
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-d $'{ -d '{
"send": "code", "send": "code",
"email": "ENTER_YOUR_EMAIL_HERE", "email": "ENTER_YOUR_EMAIL_HERE",
"client_id": "KY4YbVAvtgB7lp8vIbWQ7zLk3hssZlhR", "client_id": "KY4YbVAvtgB7lp8vIbWQ7zLk3hssZlhR",
@ -72,7 +72,7 @@ curl -X "POST" "https://mykobold.eu.auth0.com/passwordless/start" \
# replace the value of otp 123456 with the value you received from the email # replace the value of otp 123456 with the value you received from the email
curl -X "POST" "https://mykobold.eu.auth0.com/oauth/token" \ curl -X "POST" "https://mykobold.eu.auth0.com/oauth/token" \
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-d $'{ -d '{
"prompt": "login", "prompt": "login",
"grant_type": "http://auth0.com/oauth/grant-type/passwordless/otp", "grant_type": "http://auth0.com/oauth/grant-type/passwordless/otp",
"scope": "openid email profile read:current_user", "scope": "openid email profile read:current_user",

View File

@ -23,7 +23,7 @@
"dependencies": { "dependencies": {
"colors": "^1.4.0", "colors": "^1.4.0",
"debug": "^4.1.1", "debug": "^4.1.1",
"node-botvac": ">=0.4.0", "node-kobold-control": ">=0.4.0",
"uuid": "^3.3.2" "uuid": "^3.3.2"
} }
} }