After a busy weekend, it was small and fruitful. Published a simple IoT platform: http://mqtt.phodal.com, simply write a guide to use.
COAP protocol
using libcoap
words can be used
coap-client -m get coap://mqtt.phodal.com:5683/topics/zero
With COAP-CLI, you can use:
Echo-N' Hello World '| Coap Post Coap://mqtt.phodal.com/topics/zeroEcho-N' {' lettuce ': 123} '| Coap Post Coap://mqtt.phodal.com/topics/zero
MQTT protocol
Mosquitto Example
mosquitto_pub -h mqtt.phodal.com -d -t lettuce -m "Hello, MQTT. This is my first message."
Examples of Python Mqtt:
ImportMOSQUITTOMQTTC = Mosquitto. Mosquitto ("Python_pub") Mqttc.connect ("Mqtt.phodal.com",1883, -,True) Mqttc.publish ("Lettuce","Hello, world!.")
HTTP protocol
Post Example
$ curl -X PUT -d ‘{ "dream": 1 }‘ -H "Content-Type: application/json" http://mqtt.phodal.com/topics/lettuce
Get Example
$ curl http://mqtt.phodal.com/topics/lettuce{ "dream": 1 }
IoT Protocol evaluation Platform--Chlorophytum User Guide