nimbotsdk/examples/printToken.nim
2023-12-08 20:44:25 -05:00

12 lines
443 B
Nim

# This is a nim equivalent to the Login example written on the matrix-bot-sdk's
# documentation website: https://turt2live.github.io/matrix-bot-sdk/tutorial-bot.html
import ../nimbotsdk
import jsconsole
const homeserverUrl: cstring = "https://matrix.example.xyz"
let auth = newMatrixAuth(homeserverUrl)
let client = auth.passwordLogin("username", "password")
console.log("Copy this access token to your bot's config: ", client.accessToken)