Chris Rhodes e37343d4d4 Update examples to use Bot tokens. | 8 лет назад | |
---|---|---|
.. | ||
README.md | 8 лет назад | |
main.go | 8 лет назад |
This example demonstrates how to utilize DiscordGo to change the account avatar using a local file inside the current working directory.
This assumes you already have a working Go environment setup and that DiscordGo is correctly installed on your system. Change directory into the example.
cd $GOPATH/src/github.com/bwmarrin/discordgo/examples/avatar/localfile
go build
Please place the file you wish to use as an avatar inside the directory named as avatar.jpg
. The filename is not important if you supply it via the commandline flag -f
when starting the application.
./localfile --help
Usage of ./ocalfile:
-e string
Account Email
-p string
Account Password
-t string
Account Token
-f string
Avatar File Name.
For example to start application with a bot token and a non-default avatar:
./localfile -t "Bot YOUR_BOT_TOKEN" -f "./pathtoavatar.jpg"