How to use a Java SDK from Amazon?

2016-01-09 Thread Laws
I'm not sure if this is a Clojure question, but I'm not sure where else to ask. I've been working on an app for the Amazon Echo. I'm trying to deal with this requirement, which I must deal with if I am to get the app into the Amazon app store: Check the request signature to verify the

Re: How to use a Java SDK from Amazon?

2016-01-09 Thread Laws
Nevermind. I just noticed they offer a Jar: https://github.com/amzn/alexa-skills-kit-java/tree/master/repo/alexa-skills-kit/alexa-skills-kit/1.1 I'll just use that. Ignore this post. On Saturday, January 9, 2016 at 5:14:51 PM UTC-5, Laws wrote: > > I'm not sure if this is a Clojure question,

Re: How to use a Java SDK from Amazon?

2016-01-09 Thread Laws
Damn. I tried localrepo, just like I have in the past: lein localrepo install alexa-skills-kit-1.1.jar alexa-sdk 1.1 and then in project.clj: :dependencies [[org.clojure/clojure "1.6.0"] [alexa-sdk "1.1"] but I still ran into configuration issues: Compiling

Re: How to use a Java SDK from Amazon?

2016-01-09 Thread Allen Johnson
I'm not sure if this helps but a quick glance at the github project you linked to contains a pom file which uses the following maven coordinates: com.amazon.alexa alexa-skills-kit 1.1.1 You may want to try that in leiningen instead. :dependencies [[org.clojure/clojure "1.6.0"]

Re: How to use a Java SDK from Amazon?

2016-01-09 Thread Shantanu Kumar
On Sunday, 10 January 2016 04:09:45 UTC+5:30, Laws wrote: > > Damn. I tried localrepo, just like I have in the past: > > lein localrepo install alexa-skills-kit-1.1.jar alexa-sdk 1.1 > > and then in project.clj: > > :dependencies [[org.clojure/clojure "1.6.0"] > [alexa-sdk

Re: How to use a Java SDK from Amazon?

2016-01-09 Thread Laws
Thanks for all the suggestions. I got this working like this: I used the Leinengen "localrepo" plugin to install the Amazon SDK like this: lein localrepo install alexa-skills-kit-1.1.jar alexa-sdk 1.1 and this created a very basic pom.xml file here: