Bini
KKinde
•Created by Bini on 8/29/2024 in #💻┃support
newly added team member does not have role admin
as per https://docs.kinde.com/get-started/team-and-account/add-team-members/
- i'm using Kinde Free plan
- i created the business in Kinde and have role Owner
- i've added a new team member and they've accepted the invite
- the new team member is expected to have role Admin by default but their role column in Settings > Team is blank and they don't have permissions to do anything (e.g., add new application, access Users, Organizations, Design, etc.)
is this a bug, or am i doing something wrong when adding team member?
7 replies
KKinde
•Created by Bini on 5/16/2024 in #💻┃support
how to request tokens using curl?
what i want:
- retrieve token as authenticated test user in Kinde and make call to rest api using curl
curl http://myapi.com/api -H 'authorization: Bearer {accessToken}'
what i've done:
- added my rest api app in Kinde
- added a test user with email:password in Kinde
- redirected test user to authz endpoint and obtained authz code via web browser
- curl POST to token endpoint with authz code but returned 400 bad request (invalid grant)
curl -X POST https://<my_kinde_sudomain>.kinde.com/oauth2/token -H 'content-type: application/x-www-form-urlencoded' -d 'client_id=<my_kinde_client_id>&client_secret=<my_kinde_client_secret>&grant_type=authorization_code&redirect_uri=<my_app_redirect_url>&code=<my_callback_authorization_code>'
2 replies