<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  <channel>
    <title>Amazon Echo Development</title>
    <description>Amazon Echo Custom Development</description>
    <pubDate>Sun, 19 Apr 2026 17:44:47 +0000</pubDate>
    <lastBuildDate>Sun, 19 Apr 2026 17:44:47 +0000</lastBuildDate>
    <generator>An Unofficial Forum About Amazon Echo</generator>
    <link>http://www.echoforum.com/forums/amazon-echo-development.5/</link>
    <atom:link rel="self" type="application/rss+xml" href="http://www.echoforum.com/forums/amazon-echo-development.5/index.rss"/>
    <item>
      <title>Alexa making cross-search-engine searches with visual images: Video</title>
      <pubDate>Wed, 08 Feb 2017 20:21:31 +0000</pubDate>
      <link>http://www.echoforum.com/threads/alexa-making-cross-search-engine-searches-with-visual-images-video.39/</link>
      <guid>http://www.echoforum.com/threads/alexa-making-cross-search-engine-searches-with-visual-images-video.39/</guid>
      <author>invalid@example.com (Jez)</author>
      <dc:creator>Jez</dc:creator>
      <content:encoded><![CDATA[Hi, Personally I feel that the whole home automation thing is going more and more towards simply turning a light on and turning it off again .... there&#039;s so much more we can do  with the Echo and Dot.<br />
<br />
I&#039;ve developed a means of Alexa performing direct cross-search-engine searches simultaneously, when you ask a question Alexa usually add her (it&#039;s) contribution to the answer too, along with the search results of several configurable search engines all invoked through a single question whilst...<br />
<br />
<a href="http://www.echoforum.com/threads/alexa-making-cross-search-engine-searches-with-visual-images-video.39/" class="internalLink">Alexa making cross-search-engine searches with visual images: Video</a>]]></content:encoded>
    </item>
    <item>
      <title>zip files and the lambda console</title>
      <pubDate>Sat, 27 Jun 2015 23:04:25 +0000</pubDate>
      <link>http://www.echoforum.com/threads/zip-files-and-the-lambda-console.23/</link>
      <guid>http://www.echoforum.com/threads/zip-files-and-the-lambda-console.23/</guid>
      <author>invalid@example.com (iWombat)</author>
      <dc:creator>iWombat</dc:creator>
      <content:encoded><![CDATA[I have gotten several examples to work in the lambda console, but I am confused about how to place my code in a zip file for upload using the console.<br />
<br />
When I take the code in Function window and cut and paste it to a file:<br />
./Cooters-App/CootersLambda.js<br />
<br />
I have tried zipping this up in multiple ways, first the file only:<br />
<br />
unzip -lv CootersLambda.zip <br />
Archive:  CootersLambda.zip<br />
 Length   Method    Size  Ratio   Date   Time   CRC-32    Name<br />
--------  ------  ------- -----   ----   ----...<br />
<br />
<a href="http://www.echoforum.com/threads/zip-files-and-the-lambda-console.23/" class="internalLink">zip files and the lambda console</a>]]></content:encoded>
      <slash:comments>1</slash:comments>
    </item>
    <item>
      <title>Alexa Skills Kit</title>
      <pubDate>Fri, 26 Jun 2015 02:54:37 +0000</pubDate>
      <link>http://www.echoforum.com/threads/alexa-skills-kit.25/</link>
      <guid>http://www.echoforum.com/threads/alexa-skills-kit.25/</guid>
      <author>invalid@example.com (Jeff C)</author>
      <dc:creator>Jeff C</dc:creator>
      <content:encoded><![CDATA[<a href="http://phx.corporate-ir.net/phoenix.zhtml?c=176060&amp;p=irol-newsArticle&amp;ID=2062551" target="_blank" class="externalLink" rel="nofollow">http://phx.corporate-ir.net/phoenix.zhtml?c=176060&amp;p=irol-newsArticle&amp;ID=2062551</a><br />
<br />
<br />



<div class="bbCodeBlock bbCodeQuote">
	<aside>
		
		<blockquote class="quoteContainer"><div class="quote">Alexa is the cloud-based voice service that powers Amazon Echo, a new category of device designed around your voice. Today, Amazon announced the Alexa Skills Kit (ASK), a collection of self-service APIs and tools that make it fast and easy for developers to create new voice-driven capabilities for Alexa. With a few lines of code, developers can easily integrate existing web services with...</div><div class="quoteExpand">Click to expand...</div></blockquote>
	</aside>
</div><a href="http://www.echoforum.com/threads/alexa-skills-kit.25/" class="internalLink">Alexa Skills Kit</a>]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
    <item>
      <title>jeopardy example</title>
      <pubDate>Thu, 25 Jun 2015 14:54:10 +0000</pubDate>
      <link>http://www.echoforum.com/threads/jeopardy-example.22/</link>
      <guid>http://www.echoforum.com/threads/jeopardy-example.22/</guid>
      <author>invalid@example.com (Chad Doebelin)</author>
      <dc:creator>Chad Doebelin</dc:creator>
      <content:encoded><![CDATA[Made this quick jeopardy app<br />
<br />
This works well enough, it needs some polishing and fixing up, but the wife and kids are using it between commercial breaks on TV.<br />
<br />
<br />
<br />
Code for the Intent Schema<br />


<div class="bbCodeBlock bbCodeCode">
	<div class="type">Code:</div>
	<pre>
{
  &quot;intents&quot;: [
    {
      &quot;intent&quot;: &quot;WhatIsIntent&quot;,
      &quot;slots&quot;: [
        {
          &quot;name&quot;: &quot;Ans&quot;,
          &quot;type&quot;: &quot;LITERAL&quot;
        }
      ]
    }
  ]
}
</pre>
</div>Code for the Sample Utterances<br />


<div class="bbCodeBlock bbCodeCode">
	<div class="type">Code:</div>
	<pre>
WhatIsIntent what is {metalurgy|Ans}
WhatIsIntent what is {hamburger Hill|Ans}...</pre>
</div><a href="http://www.echoforum.com/threads/jeopardy-example.22/" class="internalLink">jeopardy example</a>]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
    <item>
      <title>Amazon Echo Hello World with PHP endpoint</title>
      <pubDate>Thu, 25 Jun 2015 08:04:26 +0000</pubDate>
      <link>http://www.echoforum.com/threads/amazon-echo-hello-world-with-php-endpoint.15/</link>
      <guid>http://www.echoforum.com/threads/amazon-echo-hello-world-with-php-endpoint.15/</guid>
      <author>invalid@example.com (Jeff C)</author>
      <dc:creator>Jeff C</dc:creator>
      <content:encoded><![CDATA[For the simplest method to return a &quot;Hello World!&quot; response when developing your Echo app, create a PHP file named echo.php with the following contents:<br />
<br />


<div class="bbCodeBlock bbCodeCode">
	<div class="type">Code:</div>
	<pre>&lt;?php

$data = file_get_contents(&quot;php://input&quot;);

header('Content-Type: application/json;charset=UTF-8');

$text = '{
    &quot;version&quot; : &quot;1.0&quot;,
    &quot;response&quot; : {
        &quot;outputSpeech&quot; : {
            &quot;type&quot; : &quot;PlainText&quot;,
            &quot;text&quot; : &quot;Hello World!&quot;
        },
        &quot;shouldEndSession&quot; : false
    }
}';...</pre>
</div><a href="http://www.echoforum.com/threads/amazon-echo-hello-world-with-php-endpoint.15/" class="internalLink">Amazon Echo Hello World with PHP endpoint</a>]]></content:encoded>
      <slash:comments>45</slash:comments>
    </item>
    <item>
      <title>php example</title>
      <pubDate>Tue, 23 Jun 2015 22:10:21 +0000</pubDate>
      <link>http://www.echoforum.com/threads/php-example.21/</link>
      <guid>http://www.echoforum.com/threads/php-example.21/</guid>
      <author>invalid@example.com (Chad Doebelin)</author>
      <dc:creator>Chad Doebelin</dc:creator>
      <content:encoded><![CDATA[<div class="bbCodeBlock bbCodeCode">
	<div class="type">Code:</div>
	<pre>&lt;?php
function speechOut($words) {
        header('Content-type: application/json');

        $open = '{&quot;version&quot;: &quot;1.0&quot;,&quot;sessionAttributes&quot;:&quot;&quot;,&quot;response&quot;:{&quot;outputSpeech&quot;:{&quot;type&quot;: &quot;PlainText&quot;,&quot;text&quot;: &quot;';
        $close = '&quot;},&quot;shouldEndSession&quot;: false}}';

        echo $open;
         echo ($words);
        echo $close;
}
$data = json_decode(file_get_contents('php://input'), TRUE);
$text = print_r($data,true);

$ver = $data['session'][sessionId];...</pre>
</div><a href="http://www.echoforum.com/threads/php-example.21/" class="internalLink">php example</a>]]></content:encoded>
    </item>
    <item>
      <title>Amazon Echo SDK Private BETA Released</title>
      <pubDate>Wed, 18 Mar 2015 00:53:58 +0000</pubDate>
      <link>http://www.echoforum.com/threads/amazon-echo-sdk-private-beta-released.12/</link>
      <guid>http://www.echoforum.com/threads/amazon-echo-sdk-private-beta-released.12/</guid>
      <author>invalid@example.com (Jeff C)</author>
      <dc:creator>Jeff C</dc:creator>
      <content:encoded><![CDATA[I received my acceptance to the Amazon Echo SDK BETA.  After some tinkering, I was able to get a basic Hello World type app.  <br />
<br />
I had to agree to an NDA so I can&#039;t talk about everything, but I will say that it is pretty straightforward.  In general, you are able to direct requests to any SSL endpoint on the internet and let your business logic handle the rest.  <br />
<br />
Here is a video of my first app:<br />
<br />
<iframe width="500" height="300" src="https://www.youtube.com/embed/-8dWxqBYDxw?wmode=opaque" frameborder="0" allowfullscreen></iframe>]]></content:encoded>
    </item>
    <item>
      <title>Amazon Echo SDK Coming SOON!</title>
      <pubDate>Sat, 28 Feb 2015 00:04:20 +0000</pubDate>
      <link>http://www.echoforum.com/threads/amazon-echo-sdk-coming-soon.9/</link>
      <guid>http://www.echoforum.com/threads/amazon-echo-sdk-coming-soon.9/</guid>
      <author>invalid@example.com (Jeff C)</author>
      <dc:creator>Jeff C</dc:creator>
      <content:encoded><![CDATA[<a href="http://www.zdnet.com/article/amazon-echo-beta-sdk-coming-for-diyers-developers-content-providers/" target="_blank" class="externalLink" rel="nofollow">http://www.zdnet.com/article/amazon-echo-beta-sdk-coming-for-diyers-developers-content-providers/</a><br />
<br />
<br />



<div class="bbCodeBlock bbCodeQuote">
	<aside>
		
		<blockquote class="quoteContainer"><div class="quote">A select few developers can now build apps for the Amazon Echo, the company&#039;s debut voice-activated assistant.<br />
<br />
The pre-release software-development kit (SDK) program is by invitation only, similar to the way the Echo purchase was handled.</div><div class="quoteExpand">Click to expand...</div></blockquote>
	</aside>
</div>This is GREAT news.  I am really looking forward to this.]]></content:encoded>
      <slash:comments>1</slash:comments>
    </item>
  </channel>
</rss>
