logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

oauth_app.md (396B)


  1. # Creating trusted OAuth App
  2. {! backend/administration/CLI_tasks/general_cli_task_info.include !}
  3. ## Create trusted OAuth App.
  4. Optional params:
  5. * `-s SCOPES` - scopes for app, e.g. `read,write,follow,push`.
  6. === "OTP"
  7. ```sh
  8. ./bin/pleroma_ctl app create -n APP_NAME -r REDIRECT_URI
  9. ```
  10. === "From Source"
  11. ```sh
  12. mix pleroma.app create -n APP_NAME -r REDIRECT_URI
  13. ```