diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-02-28 11:16:40 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-03-23 10:44:47 +0300 |
commit | a6ee6784bc74b311d454112c427f41b1fdec6ce0 (patch) | |
tree | 118f97a6dc5ebf98afa66ff7b0157b1da15afaf9 /docs/administration | |
parent | d74405fc1a27bb3d13f4ead2bc2369f23827a781 (diff) | |
download | pleroma-a6ee6784bc74b311d454112c427f41b1fdec6ce0.tar.gz pleroma-a6ee6784bc74b311d454112c427f41b1fdec6ce0.zip |
creating trusted app from adminFE & mix task
Diffstat (limited to 'docs/administration')
-rw-r--r-- | docs/administration/CLI_tasks/oauth_app.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/oauth_app.md b/docs/administration/CLI_tasks/oauth_app.md new file mode 100644 index 000000000..4d6bfc25a --- /dev/null +++ b/docs/administration/CLI_tasks/oauth_app.md @@ -0,0 +1,16 @@ +# Creating trusted OAuth App + +{! backend/administration/CLI_tasks/general_cli_task_info.include !} + +## Create trusted OAuth App. + +Optional params: + * `-s SCOPES` - scopes for app, e.g. `read,write,follow,push`. + +```sh tab="OTP" + ./bin/pleroma_ctl app create -n APP_NAME -r REDIRECT_URI +``` + +```sh tab="From Source" +mix pleroma.app create -n APP_NAME -r REDIRECT_URI +```
\ No newline at end of file |