Using the Access Token
Once you have an access token, you can include it in the HTTP headers of your API request to access protected resources. The recommend method is to use the Authorization header with the Bearer scheme:
curl -X GET --location "https://my.sweetconnect.io/api/auth/v1/users/me" \
-H "Authorization: Bearer ${ACCESS_TOKEN}"Alternative you can also send the access token as a cookie:
curl -X GET --location "https://my.sweetconnect.io/api/auth/v1/users/me" \
-H "Cookie: access_token=${ACCESS_TOKEN}"