I generated the keys using the Laravel command php artisan passport:keys, but I donβt know where I can find it.
php artisan passport:keys
When reading the source code, I find that it gets its way from$keyPath . Which can be installed with loadKeysFrom($path). or uses the default location from storage_path(). By default it is storage.
$keyPath
loadKeysFrom($path)
storage_path()
storage
The default path is the storage folder .
There are two files with the following names:
oauth-private.key oauth-public.key
Laravel version: 5.8
Source: https://habr.com/ru/post/1682226/More articles:LiquidHaskell: attempt to use the take keyword, but the data type is not numeric - haskellPandas - fragment of a large data array in pieces - pythonMismatch between MinimumBy and MaximumBy - haskellScala Sliding strategies for compiling compiled queries of various forms - scalaThe difference between processors and threads - javaIs AWS A / B testing for static websites impossible with Cloudfront? - amazon-s3How to get the template parameter of the template template? - c ++Pandas data cleaning selective data cleaning group group - pandasHow to use the backslash operator in Julia? - operatorsExtend vueJs v-on directive: click - vue.jsAll Articles