If you are working with the AppSheet API we may get Error messages that we don’t understand.
For Example:
-
Error received when fetching REST details: SyntaxError: Unexpected token T in JSON at position 106 -
Object reference not set to an instance of an object.
There may be many reasons. In my case the problem was with double quotes.
This is what I had to change:
Instead of:
{
"Action": "Add",
"Properties": {
"Locale": "en-US",
"Timezone": "W. Europe Standard Time"
},
"Rows": [
{
"Column1": "My_Text_Containing_Double_Quotes"
}
]
}
I had to do:
{
"Action": "Add",
"Properties": {
"Locale": "en-US",
"Timezone": "W. Europe Standard Time"
},
"Rows": [
{
"Column1": 'My_Text_Containing_Double_Quotes'
}
]
}
Please see the single quotes around My_Text_Containing_Double_Quotes.