Release Kanzi: Amazon Alexa skill for Kodi - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: Release Kanzi: Amazon Alexa skill for Kodi (/showthread.php?tid=254502) Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
RE: Amazon Echo skill for Kodi - zrikz - 2017-07-13 (2017-07-12, 23:59)zrikz Wrote: service simulator currently., will try the real thing as soon as I get home in about 15 minutes It's working beautifully, thank you very much. RE: Amazon Echo skill for Kodi - Livin - 2017-07-13 @m0ngr31 Have you submitted this to get published on Amazon? Looks like a ton of work to setup, I think a lot more people would use if it was easier to setup. RE: Amazon Echo skill for Kodi - Yousty - 2017-07-13 I just finished setting this all up and I followed the directions very carefully so I'm pretty sure I did it all correctly but Echo only says "there was a problem with the requested skills response" and when I test a command in the Service Simulator I get "There was an error calling the remote endpoint, which returned HTTP 500 : Internal Server Error". Am I understanding correctly that there's an issue on Amazon's end that should hopefully be fixed soon or is there something wrong with my setup? Edit: Nevermind. I was using the Howtogeek.com guide and noticed that it's missing the "pip install packaging" step. It's working now! RE: Amazon Echo skill for Kodi - mngsparks - 2017-07-13 I just finished going through this awesome guide but keep getting the following error when Asking Alexa to do anything in the living room: "There was a problem with the requested skill's response" It also fails when trying to do it with the service simulator with the following: "There was an error calling the remote endpoint, which returned HTTP 500 : Internal Server Error" Please help. Thanks in advance. RE: Amazon Echo skill for Kodi - jingai - 2017-07-13 @mngsparks, Which 'awesome guide?' You should be using the official documentation. And again, the service simulator is currently non-functional. RE: Amazon Echo skill for Kodi - mngsparks - 2017-07-13 The one form howtogeek.com RE: Amazon Echo skill for Kodi - Jackal2099 - 2017-07-13 (2017-07-13, 03:44)Yousty Wrote: Edit: Nevermind. I was using the Howtogeek.com guide and noticed that it's missing the "pip install packaging" step. It's working now! I've been working on this for a day playing with flask-ask, but it turns out this missing step was my real problem. Thanks Yousty! RE: Amazon Echo skill for Kodi - mngsparks - 2017-07-13 Yeah. I saw that. I did that and also installed flask-ask 0.9.3. Still same error though. Was hoping that was the fix. RE: Amazon Echo skill for Kodi - jingai - 2017-07-13 People, please use the official documentation to set up this skill. We cannot guarantee that third-party guides are up-to-date, and things change frequently. RE: Amazon Echo skill for Kodi - mngsparks - 2017-07-13 So Do i need to do everything all over? Do I have to uninstall anything first? RE: Amazon Echo skill for Kodi - jingai - 2017-07-13 Just follow the README on github to the tee and it will work. The only caveat at the moment is that Flask-Ask 0.9.5 isn't working right, so you can either wait for the next version of it, or do the following in your virtualenv: Code: pip install flask-ask==0.9.4 after the step where you: Code: pip install -r requirements.txt Further, Amazon's service simulator is currently sending invalid JSON (which is the cause of the troubles with Flask-Ask at the moment), so make sure you test with a real Echo device. RE: Amazon Echo skill for Kodi - Yousty - 2017-07-13 (2017-07-13, 05:34)mngsparks Wrote: So Do i need to do everything all over? Do I have to uninstall anything first?Since I'm a newb with Python, the easiest thing I found to do was to just re-run all the commands (Steps 3 and 4 of the howtogeek guide) making sure to add the "pip install packaging" command that was missing and then for the final step instead of "zappa deploy dev" I used "zappa update dev" because the deploy command gives you an error since the dev is already deployed. RE: Amazon Echo skill for Kodi - Yousty - 2017-07-13 I contacted Howtogeek and they have now updated their guide to include the missing "pip install packaging" step. Hopefully that will help alleviate the number of people coming here asking you for help, jingai. If I may suggest one edit to the official repo README, it isn't clear that you have to be in the python27\scripts directory when you start performing the commands in command prompt. So maybe add an instruction telling people to cd to their python27\scripts directory? RE: Amazon Echo skill for Kodi - ninernerd - 2017-07-13 Hello all, First off let me say a big thank you to the user who made this.. I'm so new to this modifying kodi to this extreme. I have 17.1 was on 17.3 but was having issues with it connecting to the internet. I am now trying to get my dot to work with kodi. I had followed two different tutorials, most recent one I followed - https://www.youtube.com/watch?v=_KSlz_lT1k4 first one I followed, https://www.howtogeek.com/249336/how-to-control-your-kodi-media-center-with-an-amazon-echo/ I made a Dynamic DNS with noip.com and used the amazon route vs hero on the first attempt guide, anyways, what do I need to give you guys as far as info to help me out. I gave the command name kodi like he does in the video, I tried longer names but still have the same result. I get her error message about a problem with the requested skills response. Thanks Curtis RE: Amazon Echo skill for Kodi - jingai - 2017-07-14 (2017-07-13, 16:13)Yousty Wrote: I contacted Howtogeek and they have now updated their guide to include the missing "pip install packaging" step. Hopefully that will help alleviate the number of people coming here asking you for help, jingai. The problem is not just this time, but every time we make a change to the documentation. People should refer first (or at least, definitively) to our documentation. (2017-07-13, 16:13)Yousty Wrote: If I may suggest one edit to the official repo README, it isn't clear that you have to be in the python27\scripts directory when you start performing the commands in command prompt. So maybe add an instruction telling people to cd to their python27\scripts directory? You don't need to do that though. You need to be in the directory where you cloned the git repo. |