I want to connect my HTML with Clouddb. How can I do
Provide more information about "your HTML", your relevant blocks so far, screenshots of app, etc.
I want to build a website that it can get data from the MIT Appinventor CloudDB successfully.Could you tell me how to consult this problem,thank you very much.
You would need your own redis server and some javascript to fetch data if you want to do this from outside of the app.
If inside the app, use the app controls to get the data and then pass the data to the website using the webviewstring.
I want to use the DEFAULT redis and the website is not inside the app.It runs in the broswer.
Could you give me the code,please
As far as I know, you cannot (easily,if at all) access the cloudDB data, using the DEFAULT server, from outside of an AI2 app.
For production purposes, you should not use the DEFAULT server.
This said, it is possible for an app to be written that could return all data (or updated data) from CloudDB, then upload this data to a server, which could then feed a website. The app would need to be running 24/7, for realtime updates. Similarly, and data added via the website could be collected by the app and passed into CloudDB.
It would be better to just use mySQL (or similar online database) on the website server for both your main app and website.