Closed wbrijesh closed 1 year ago
If you're using the golang client library, this should probably be posted in the client library repo, as that is responsible for taking your configuration and acting on it in such a way that sqld already recognizes. With other client libraries, the library takes a custom configuration object, and internally adds the auth token to the Authentication HTTP header, but the golang client doesn't give you that amount of control over the interaction.
Could you try the add the query string ?authToken=[token]
or ?jwt=[token]
? The former is ideally what we want, but it might not be implemented yet. The latter I'm pretty sure works today.
I was trying to connect to turso database from a go app
and curl localhost:8000/users gives this error
example from turso's documentation shows that token is needed for connection
I am used to writing
being able to do
would be great