nimbotsdk/examples/printToken.nim
array-in-a-matrix 5f41c6bc08 updated path
2024-03-26 13:14:56 -04:00

12 lines
447 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 ../src/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)