
Get JSON key with a special character
I have an Issue where I try to retrieve a Microsoft built json. The problem is that the JSON is setup as follows:
{
"@odata.nextLink": "some-url.com"
}
Now this key has a dot in it, so when I try to read it via a custom model it seems to stay empty. I think it tries to find the object @odata, and then the property nextLink within it, but how would I set this up to actually read the data?
I have an Issue where I try to retrieve a Microsoft built json. The problem is that the JSON is setup as follows:
{
"@odata.nextLink": "some-url.com"
}
Now this key has a dot in it, so when I try to read it via a custom model it seems to stay empty. I think it tries to find the object @odata, and then the property nextLink within it, but how would I set this up to actually read the data?
Login to reply