xperiments-in / xtouch

Other
724 stars 71 forks source link

Explain config.json format #151

Closed dayne closed 4 months ago

dayne commented 4 months ago

Feature Description

Describe the format of the config.json so people can make it without using an online form that submits their local wifi details and Bambu login details to a website.

Justification

Securing & future proofing: Reduce the need to submit private information to an online service that might be trusted now but could be compromised or become an attack surface (now or in the future).

Suggested Implementation (if you have one)

xperiments commented 4 months ago

Hi the website don't send any info anywhere all is done in local, you can check the code. The format is simple, all keys are Base64 encoded except cloud-region

{ "ssid": "BASE_64_ENCODED_SSID", "pwd": "BASE_64_ENCODED_PWD", "cloud-email": "BASE_64_BBL_EMAIL", "cloud-password": "BASE_64_BBL_PASSWORD", "cloud-region": "World" // World or China }

For the LOCAL only

Goto

https://xperiments.in/xtouch-bin/config.html

Download the page

Run in local( You can run offline)

dayne commented 4 months ago

Thank you for the speed response and the concise and clear explication.

Great project.