Originally posted by dcorsus
View Post
i.e
HomeSeerSystem.RegisterFeaturePage(Id, "sample-blank.html?id=1", "Sample Blank Page 1");
HomeSeerSystem.RegisterFeaturePage(Id, "sample-blank.html?id=2", "Sample Blank Page 2");
And we fixed the HS web server so that a post request to a html page with or without query parameters are passed to the plugin as long as the html page has been registered at least once (with or without query parameters)
i.e post to any of the 4 following urls are passed to the plugin.
/HomeSeerSamplePlugin/sample-blank.html?id=1
/HomeSeerSamplePlugin/sample-blank.html?id=2
/HomeSeerSamplePlugin/sample-blank.html?foo=bar
/HomeSeerSamplePlugin/sample-blank.html
Comment