<p dir="ltr"><br>
</p>
<br><div class="gmail_quote">On Sat, Apr 18, 2015, 12:15 AM George Nassas <<a href="mailto:gnassas@mac.com">gnassas@mac.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">> On Apr 17, 2015, at 10:53 PM, dennis <<a href="mailto:deg@outlook.com" target="_blank">deg@outlook.com</a>> wrote:<br>
><br>
> I upgraded my family room mythbox to 0.28 and noticed that some of the frontend service APIs now require data to be posted.      For example,  I could send a message to the frontend previously from a browser:<br>
><br>
> <a href="http://10.0.0.101:6547/Frontend/SendMessage?Message=Shut+It+Off+and+go+to+bed" target="_blank">http://10.0.0.101:6547/Frontend/SendMessage?Message=Shut+It+Off+and+go+to+bed</a> ( I actually have a bookmark for this )<br>
><br>
> Is there an easy way to execute the services directly from a browser, now that the information must be posted to the web service?   Any idea why this changed?<br>
<br>
It changed to be properly RESTy - GET requests are for reading data, all else is POST, UPDATE, or DELETE. You could create a web page with a bunch of forms that have no input fields but buttons that post to URLs like the one above. With jQuery you could get fancier, depends on your idea of easy, but anyway forms are the browser way to do post requests.<br>
<br>
- George<br>
<br>
_______________________________________________<br>
mythtv-users mailing list<br>
<a href="mailto:mythtv-users@mythtv.org" target="_blank">mythtv-users@mythtv.org</a><br>
<a href="http://lists.mythtv.org/mailman/listinfo/mythtv-users" target="_blank">http://lists.mythtv.org/mailman/listinfo/mythtv-users</a><br>
<a href="http://wiki.mythtv.org/Mailing_List_etiquette" target="_blank">http://wiki.mythtv.org/Mailing_List_etiquette</a><br>
MythTV Forums: <a href="https://forum.mythtv.org" target="_blank">https://forum.mythtv.org</a><br>
</blockquote></div><p dir="ltr">Add  REST client to chrome or Firefox. Search their respective addon managers. There are a bunch of them and some work in both browsers.</p>
<p dir="ltr">Or, put them in a script using curl to do the posts.</p>