Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/xMistt/rebootpy
Browse files Browse the repository at this point in the history
  • Loading branch information
xMistt committed Jan 6, 2025
2 parents 3c6966d + bd21974 commit 11aa13f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def hello(ctx):
bot.run()
```

# Authorization
# Authorization Code
How to get a one time authorization code:
1. Log into the epic games account of your choice [here](https://www.epicgames.com/id/login?redirectUrl=https%3A%2F%2Fwww.epicgames.com%2Fid%2Fapi%2Fredirect%3FclientId%3D3f69e56c7649492c8cc29f1af08a8a12%26responseType%3Dcode).
2. Copy the value of the `authorizationCode` field from the response as shown in the image below:
Expand All @@ -66,7 +66,7 @@ How to get a one time authorization code:
Keep in mind that authorization code isn't the only method of authentication, you can view all of them [here](https://rebootpy.readthedocs.io/en/latest/api.html#authentication), DeviceAuth is recommended once you've generated device auths.

# Credit
Thanks to [Kysune](https://github.com/SzymonLisowiec), [iXyles](https://github.com/iXyles), [Vrekt](https://github.com/Vrekt) and [amrsatrio](https://github.com/Amrsatrio) for ideas and/or work that this library is built upon.
Thanks to [Kysune](https://github.com/SzymonLisowiec), [iXyles](https://github.com/iXyles), [Vrekt](https://github.com/Vrekt), [amrsatrio](https://github.com/Amrsatrio) and [This Nils](https://github.com/thisnils) for ideas and/or work that this library is built upon.

# Need help?
If you need more help feel free to join this [discord server](https://discord.gg/rnk869s).
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
with open('rebootpy/__init__.py') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1)

requirements = ['aiohttp>=3.3', 'aioxmpp>=0.10.4']
requirements = ['aiohttp>=3.10.10', 'aioxmpp>=0.13.3', 'aioconsole>=0.1.15', 'pytz>=2024.2']
try:
with open('requirements.txt') as f:
requirements = f.read().splitlines()
Expand Down

0 comments on commit 11aa13f

Please sign in to comment.