Hi,
have some problems with connecting the Google API for google sheets to bubble.
Actually I already solved the API Connection via a service like DBSheets or sheety.
Nevertheless I wanted to do it directly by the instruction that offers
Google and created an API by using an Google Aps Script.
The problem is: the result looks like this:
{
“range”: “testing!A1:Z1000”,
“majorDimension”: “ROWS”,
“values”: [
[
“Name”,
“Nachname”,
“Mail”,
“ID”
],
[
“Tobias”,
“Spaeth”,
“tobiaspspaeth@gmx.de”,
“1”
],
[
“Benjamin”,
“Maier”,
“benjamin@mail”,
“2”
]
]
}
But I expected a rest API in json format like this here:
{
“sheet1”: [
{
“unternehmen2”: “Computer”,
“mail”: 9000,
“id”: 2
},
{
“unternehmen2”: “Rufus”,
“mail”: “Herbert”,
“id”: 3
},
{
“unternehmen2”: “Markus”,
“mail”: “@web.de”,
“id”: 4
}
]
When i want to connect it to bubble it only gives my a chain of values
instead of a single value.
So in Bubble API Connector i get something like this here:
and not something this here, as i would expect it:
My main problem ist now: When i want to show content in a cell or add content to the database it gives me the a chain of values and not a single value.
Can somebody help me to deal with this problem?