Zsolt Domotor
Zsolt Domotor
I fix it by changing top: "auto" to top: "130%" in the compressed version
@svarlitskiy I tried but it doesn't work!
I've set the API URL to my endpoint which if correctly called returns a { user: { id: here some uuid, name: "John doe" ... }} the request headers to...
yes, partly, I was mean login instead of token, so it will be: - request headers: { "Authorization" : "Bearer #{login}"} - request params: empty - response params: {"uid": "#{user.id}"}...
Alright, I will try it later this week and come back with the results
Still not working... Do I missed something? **First** I make `POST` to `https://api.connectycube.com/session` like this  **Second** I make a `POST` to `https://api.connectycube.com/login`   **And** for the Settings I...
It worked, thank you!
Also how can I set the other details on user? I've tried with in Response params: ```json { "uid": "#{user.id}", "full_name": "#{user.firstName} #{user.lastName}", "avatar": "#{user.avatar}" } ``` Looks like the...
yes, I have the name of the user separated (first and last name) and I want to combine them
Hey, I see that not the `merge` function drops it but the Javascript language (on purpose). >Symbols are often used to add unique property keys to [...] the object, and...