I have a Wix site that is working fine (www.strattonwoodstudios.com, but I’m looking to store some information on a page that I can then access from my iOS app. So, what I’m looking to do is add a new page on my site (for example, www.strattonwoodstudios.com/data-to-use.json),,) and on this page I’d like to have nothing but straight json - no meta data, no headers/footers, no functions, no java script. So, if you were to open the page in Postman you would see something like this:
[
{
“first_name” : “Ford” ,
“last_name” : “Prefect” ,
“age” : 5000
},
{
“first_name” : “Zaphod” ,
“last_name” : “Beeblebrox” ,
“age” : 999
}
]
I tried in the Wix Editor and also in the ADI, but both “blank” pages have about 5400 lines of extra code. I have the json all ready to go, I just need to “drop it” into my web site as a new page. Has anyone done anything like this? Thanks in advance.