Zsolt Domotor

Results 11 comments of 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 ![image](https://user-images.githubusercontent.com/17215747/107741554-155c2300-6d16-11eb-9c5a-8aa0c23110de.png) **Second** I make a `POST` to `https://api.connectycube.com/login` ![image](https://user-images.githubusercontent.com/17215747/107741394-c0201180-6d15-11eb-8b95-a8969cb7e0c7.png) ![image](https://user-images.githubusercontent.com/17215747/107741450-dcbc4980-6d15-11eb-872f-dc6e55dc9fc6.png) **And** for the Settings I...

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...