Hi!
I have successfully connected to makeplans.net ’s API. but when trying to output a string
it returns [object Object]
(Step 1) Here is the connection:
(Step 2)And the returned values looks fine here:
(Step 3) I’m setting up a text field based on an API call for a spesific ID:
(Step 4) Adding the parameter idx.resource.title (which I’ve defined as text in the connection):
Which outputs [object Object] even though it shows the correct value in step 2
After some googling, my only guess is that this is because it’s trying to output an array?
But I find that strange, since I have selected a single item when connecting to a spesific ID (Step 3)
Any help/advice?
1 Like
So if I remove the ID-part of the connection url (so that the url is this: http://pm.test.makeplans.net/api/v1/resources/ ) it will output correctly the last item of the “resources”.
Outputs the last “resource item”:
Strange thing is, in the API connector, when I initiate a call with spesific ID it returns the values correctly:
Bfanti
December 5, 2016, 1:39pm
3
Hello,
I got the same problem : an [object Object] value on a list response.
I tried to display only the first item, same problem.
I tried to display them on a repeating group, same problem.
Did you solve your problem ?
Thanks,
1 Like
Hi. I have exactly the same problem. The API call returns [object Object]. Has anyone solved this problem?
1 Like
I get the same thing with the Airtable plug-in
Can this problem be solved?
33077a
October 2, 2022, 6:48pm
7
All day I try to solve the same problem, and I found the reason – its because button Pause was switched on. When you turn it off – it will work
but doesnt this pause your scheduled jobs?
How do these things have anything to do with each other
Hey guys, I figured this out for my app and i thought i would post it here.
So bubble does this when you try to show a js object as text. (s/o to @yelkhayami on twitter)
To fix this, you need to reinitalize your api call that is providing this, and in the response, make sure that the data field you need is formatted as text.
Once it is, then it will work.
1 Like