I have an Appwrite function (using Nodejs runtime) which should get user's data from 3rd party source and then create user in Database. For getting user's data the code is:
const user = await axios.get(URL, params)
My problem is I can not access to the user's object data after getting response. Consoling the user type shows me object but trying to get user.email output nothing. This filed definately exists, I've checked it with Postman app. So my Axios get requiest config is correct. And response fromat is json.
I'm also tryied to initialize user with and empty object and return data even it empty. But running function falls into error: TypeError: Converting circular structure to JSON.
Probably I have another way to get user's data logged in through OAuth login? Simply, I want to save logged user into Database.
Function doesn't parse json data
I believe the axios.get() returns a Response which contains a lot of stuff that leads to a circular reference. Try:
const response = await axios.get(...);
console.log(response.data);
You are absolutely right. Sorry for my distraction
[RESOLVED] Function doesn't parse json data
Recommended threads
- Domain is already used. Please try again...
I have a website with where the www.domain.me This website works just fine But if I try to visit domain.me. I get this error. I keep getting sent to some app ri...
- Realtime api and labels as permission
in my tables i set labels as permission and real-time capabilities stopped working. Before when i was having "any" role everything was working. Note: user have...
- "Restore project" button fails: "Invalid...
In the dashboard, it clicking "Restore project" fails. The request sent to `PATCH https://cloud.appwrite.io/v1/projects/:project_id` with payload `{status: "act...