I have been trying to create a google assistant interaction for checking to see if the most recently drawn lottery results match the user’s
I have tried an API created by ‘CreativeSolutions’ however the API does not seem to be responding to requests and I cannot find any other alternatives.
JavaScript
x
32
32
1
'use strict';
2
3
const { dialogflow } = require('actions-on-google');
4
const functions = require('firebase-functions');
5
6
const app = dialogflow({ debug:true });
7
8
app.intent('wednesdays number', (conv, {number}) => {
9
10
var lottoNumber = number;
11
if (lottoNumber == '01') {
12
return conv.ask('Thats correct, want to try again?');
13
}
14
15
var unirest = require("unirest");
16
17
var req = unirest("GET", "https://euromillions.p.rapidapi.com/ResultsService/FindLast");
18
19
req.headers({
20
"x-rapidapi-host": "euromillions.p.rapidapi.com",
21
"x-rapidapi-key": "6176bf0ce5mshda3ef945e5d809fp156f41jsnd333104ff8d2"
22
});
23
24
25
req.end(function (res) {
26
if (res.error) throw new Error(res.error);
27
28
console.log(res.body);
29
});
30
31
32
});
Advertisement
Answer
The EuroMillions does not have a free public-facing official API so this would be unable to be completed.