We are building a product on top of Photon and are defining the specs for the user experience when used from the Browser. Trying to figure out if the Web App would be able to initiate Photon Soft AP.
Imagine customer boots into their laptop/desktop/mobile phone browser, logs into our site and wants to add a new product and use it. We would like once the product is added that the user gets to pair it to their Wifi network as well, is it possible to trigger Soft AP from the browser. The way i see is the same Soft AP process could guide the user to connect their computer to the Photonās wifi and then exchange the credentials while being in the browser. Similar to what the SDKās do, is it possible or planned for the near term? Whatās the alternative if this is not supported? We ask customers to setup Soft AP on their own, claim the device and then login to the site?
This code works great from a server-side nodejs app. However, Iām struggling to get the client (browser) side working.
Iām using Browserify to āflattenā all the required nodejs modules for softap-setup-js into a single client-side javascript file. ānconfā is a known issue with Browserify (which softap-setup uses). Iām having problems trying to use SoftAPSetup using ātcpā (i.e. via the ānetā module)ā¦ even when using net-browserify. The http protocol doesnāt appear to be available on my Photonā¦ Iāve tried to do a GET on http://192.168.0.1/device-id with Postman but it doesnāt appear to be listening on port 80 (pinging 192.168.0.1 works).
Hopefully these details help flush out some answers.
thanks for finding it @brewnerd! It looks like it could work. Looks like it still is a work in progress, Were you able to get any help from particle for tcp or http to work on your photon?
ātcpā works great but you donāt have direct access to sockets in the browser so you have to use āhttpā. However, http isnāt implemented yet.
@nexxy Any ETA on softap http support on the Photon?
As an aside, the HTTP API as shown in softap-setup-js looks easy to use.
@mdma I submitted a pull-request for softap-setup-js that allows this library to be used in the browser.
Now Iām working in Sencha Touch, which is a web-based mobile app platform. Iām having cross-domain issues because the browser issues an OPTIONS call prior to doing a POST (see Cross-Origin Resource Sharing)ā¦ the Photon never responds to the OPTIONS request with CORS-headers, so the POST never happens. This means I can only make ādevice-idā, āscan-apā, and āpublic-keyā calls (all using GET).
Iāve looked at the Photon firmwareā¦ specifically softap.cpp. It looks like youāre using the builtin WICED webserver (wiced_http_server_start).