This commit is contained in:
Dan Anglin 2024-02-26 14:09:57 +00:00
parent 87befb342b
commit 9da8e80725
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -141,7 +141,17 @@ Use "enbas [command] --help" for more information about a command.
=== Log into your GoToSocial account === Log into your GoToSocial account
Enbas uses the Oauth2 authentication flow to log into your account on GTS. This process requires your input to give consent to allow Enbas access to your account. The login flow is completed using the following steps: Enbas uses the Oauth2 authentication flow to log into your account on GTS. This process requires your input to give consent to allow Enbas access to your account.
[WARNING]
.Scoped Tokens
====
As of writing GoToSocial does not currently support scoped authorization tokens so even if we request read-only
tokens, the application will be able to perform all actions within the limit of of your account.
You can read more about this https://docs.gotosocial.org/en/latest/api/authentication/[here].
====
The login flow is completed using the following steps:
1. You start by using the `login` command specifying the instance that you want to log into. 1. You start by using the `login` command specifying the instance that you want to log into.
+ +
@ -186,11 +196,28 @@ Successfully logged into bobby@gotosocial-01.social.example
=== View your account information === View your account information
=== View a remote account [source,console]
----
enbas show --type account --my-account
----
=== View your timeline === View a local or remote account
=== View a status [source,console]
----
enbas show --type account --account teddy@gotosocial-01.social.example
----
=== View your home timeline
[source,console]
----
enbas show --type timeline
----
=== View the details of a status
TODO
== Inspirations == Inspirations