[SOLVED]How to obtain the user account access token for authentication using a request via Insomnia?
- 0
- Accounts
- Web
I would like to know how to obtain the access token for user authentication after creating a session via email with the accounts API. I am using Insomnia to obtain the information returned after session creation, particularly the providerAccessToken, which returns an empty value. I cannot access my application as an authenticated user without this token.
Ex: { "$id": "6415c5e9cfbc0361682d", "$createdAt": "2023-03-18T14:08:41.856+00:00", "userId": "6413a90b365a70d0f0c2", "expire": "2024-03-17 14:08:41.850", "provider": "email", "providerUid": "my_email", "providerAccessToken": "", "providerAccessTokenExpiry": "", "providerRefreshToken": "", "ip": "my_ip", "osCode": "", "osName": "", "osVersion": "", "clientType": "library", "clientCode": "", "clientName": "Node Fetch", "clientVersion": "1.0", "clientEngine": "", "clientEngineVersion": "", "deviceName": "", "deviceBrand": "", "deviceModel": "", "countryCode": "--", "countryName": "Unknown", "current": true }
Maybe this will help: https://appwrite.io/docs/rest#client-auth
Thanks, @Steven
[SOLVED]How to obtain the user account access token for authentication using a request via Insomnia?
Recommended threads
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...