<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Kinetis MicrocontrollersのトピックRe: JSON POST from a Kinetis Micro</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384272#M20583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tharon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you are requesting requires not only the TCPIP stack but a SSL for the connection with the HTTPS server. You have two options. For the FRDM-K64F we have SSL stack in MQX. This may require a little bit more of efforts compared with the second option; mbed. Since you want a quick solution then I suggest trying with mbed. Try to import this example in your mbed on-line compiler: &lt;A href="http://developer.mbed.org/users/ban4jp/code/CyaSSL-Twitter-OAuth4Tw/" title="http://developer.mbed.org/users/ban4jp/code/CyaSSL-Twitter-OAuth4Tw/"&gt;CyaSSL-Twitter-OAuth4Tw - a mercurial repository | mbed&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For MQX, take a look to this post: &lt;A href="https://community.nxp.com/message/305996"&gt;CyaSSL embedded SSL now available for MQX!&lt;/A&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/message/305996#305996" title="https://community.freescale.com/message/305996#305996"&gt; &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Garabo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Feb 2015 23:29:23 GMT</pubDate>
    <dc:creator>Luis_Garabo</dc:creator>
    <dc:date>2015-02-19T23:29:23Z</dc:date>
    <item>
      <title>JSON POST from a Kinetis Micro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384271#M20582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I realize that getting the TCP connection up to make this happen may be the largest part of the battle, but is there an easy way to do the equivalent to the following on a Kinetis micro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="language-bash" style="font-family: Consolas, Monaco, 'Andale Mono', monospace;"&gt;curl &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;include \&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;request POST \&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;header &lt;SPAN class="token string" style="color: #669900;"&gt;"Content-Type: application/json"&lt;/SPAN&gt; \&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;header &lt;SPAN class="token string" style="color: #669900;"&gt;"X-IS-AccessKey: YOUR_KEY"&lt;/SPAN&gt; \&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;header &lt;SPAN class="token string" style="color: #669900;"&gt;"X-IS-BucketKey: curl_example_bucket"&lt;/SPAN&gt; \&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;header &lt;SPAN class="token string" style="color: #669900;"&gt;"Accept-Version: 0.0.1"&lt;/SPAN&gt; \&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;--&lt;/SPAN&gt;data&lt;SPAN class="token operator" style="color: #a67f59; background: rgba(255, 255, 255, 0.498039);"&gt;-&lt;/SPAN&gt;binary &lt;SPAN class="token string" style="color: #669900;"&gt;"[&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; \"key\": \"tempurature\",&lt;BR /&gt;&amp;nbsp; \"value\": \"22.2\",&lt;BR /&gt;&amp;nbsp; \"epoch\": 1419876021.778477&lt;BR /&gt;&amp;nbsp; },&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; \"key\": \"temperature\",&lt;BR /&gt;&amp;nbsp; \"value\": \"23.2\",&lt;BR /&gt;&amp;nbsp; \"epoch\": 1419876031.778477&lt;BR /&gt;&amp;nbsp; },&lt;BR /&gt;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp; \"key\": \"temperature\",&lt;BR /&gt;&amp;nbsp; \"value\": \"22.1\",&lt;BR /&gt;&amp;nbsp; \"epoch\": 1419876061.778477&lt;BR /&gt;&amp;nbsp; }&lt;BR /&gt;]"&lt;/SPAN&gt; \&lt;BR /&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://groker.initialstate.com/api/events" target="_blank"&gt;https://groker.initialstate.com/api/events&lt;/A&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;Could a Serial Port Protocol Bluetooth connection to a TCP/IP connected host be a solution? I am looking for a quick and dirty way to do IoT type functionality using a FRDM board and the stuff at InitialState looks appealing if I can get the support going on my end.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;Tharon Hall&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token string" style="color: #669900;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Feb 2015 19:14:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384271#M20582</guid>
      <dc:creator>tharonhall</dc:creator>
      <dc:date>2015-02-18T19:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: JSON POST from a Kinetis Micro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384272#M20583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tharon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you are requesting requires not only the TCPIP stack but a SSL for the connection with the HTTPS server. You have two options. For the FRDM-K64F we have SSL stack in MQX. This may require a little bit more of efforts compared with the second option; mbed. Since you want a quick solution then I suggest trying with mbed. Try to import this example in your mbed on-line compiler: &lt;A href="http://developer.mbed.org/users/ban4jp/code/CyaSSL-Twitter-OAuth4Tw/" title="http://developer.mbed.org/users/ban4jp/code/CyaSSL-Twitter-OAuth4Tw/"&gt;CyaSSL-Twitter-OAuth4Tw - a mercurial repository | mbed&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For MQX, take a look to this post: &lt;A href="https://community.nxp.com/message/305996"&gt;CyaSSL embedded SSL now available for MQX!&lt;/A&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/message/305996#305996" title="https://community.freescale.com/message/305996#305996"&gt; &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Garabo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 23:29:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384272#M20583</guid>
      <dc:creator>Luis_Garabo</dc:creator>
      <dc:date>2015-02-19T23:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: JSON POST from a Kinetis Micro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384273#M20584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Garabo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that the server also accepts HTTP connections as well as HTTPS but of course if it has to be secure it is a much greater effort, especially for people without SSL experience. At least the client is the easier side - as long as the server doesn't demand authentication!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kinetis: &lt;A href="http://www.utasker.com/kinetis.html" title="http://www.utasker.com/kinetis.html"&gt;µTasker Kinetis support&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;EM&gt;For the complete "out-of-the-box" Kinetis experience and faster time to market&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 23:44:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384273#M20584</guid>
      <dc:creator>mjbcswitzerland</dc:creator>
      <dc:date>2015-02-19T23:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: JSON POST from a Kinetis Micro</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384274#M20585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am a bit leery about attempting to use mbed as I did my current project on mbed but their RTOS failed when I exported it over KDS. I lost confidence that the process is "ready for prime time". I agree that mbed has tremendous potential and hope they can get the bugs worked out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said that, I believe it would lead us to an MQX solution. As MQX options come up frequently in responses to my questions, I may want to seriously consider switching my OSA flavor from FreeRTOS to MQX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tharon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Feb 2015 14:17:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/JSON-POST-from-a-Kinetis-Micro/m-p/384274#M20585</guid>
      <dc:creator>tharonhall</dc:creator>
      <dc:date>2015-02-20T14:17:22Z</dc:date>
    </item>
  </channel>
</rss>

