server_url="<http://localhost:8000/api/public/v1>",
security=models.Security(
basic_auth=models.SchemeBasicAuth(
password="...",
username="marcos",
),
),
)```
I’m having troubles with client id and client secret but it is working using the basic auth with password/username.
Ohhh now I got it working… lol
server_url="<http://localhost:8000/api/public/v1/>",
security=models.Security(
client_credentials=models.SchemeClientCredentials(
client_id=client_id,
client_secret=client_secret,
TOKEN_URL="/api/public/v1/applications/token",
),
),
)```
<@U02TNBMDUMQ> fyi as using the Python SDK and local API is not the best experience :disappointed:
my god!
it’s working now
thanks
but as I understand thats not the way it should be working?
> but as I understand thats not the way it should be working?
Could you provide more detail on this reasoning?
I mean via public api
I’m still unable to use standard approach