Nitin Sahu

Results 18 comments of Nitin Sahu

I am new to OSS, I found Coala interesting can I contribute somewhere?

solution please ` raise HTTPError(req.full_url, code, msg, hdrs, fp) urllib.error.HTTPError: HTTP Error 400: Bad Request`

hey, @Anshul0305 database queries might take longer than 5 seconds. What is the solution in this case?

``` axios.post( 'some url', orderDetails, {headers:{"Content-Type": "application/json"}}) .then((res) => { console.log(res.data.orderID); //this one executes conv.ask(res.data.orderID); //this line does not executes if(res.data.success){ orderDetails.orderId = res.data.orderId; conv.ask("great"); //not executing conv.ask(`Refer to this...

@Anshul0305 ``` agent = dialogflow() agent.add() ``` Correct me if I am wrong. ```return``` before ```axios.post()``` ? This return should just be the keyword?

Yes, not working for me too. @nasirhm can you share the code format? because as @Anshul0305 said ``` const agent = new WebhookClient({ request, response }); ``` but this line...

Okay @nasirhm I'll share the code in a minute.

```javascript app.intent('giveOrderID-phonei/p', (conv, params) => { if(params['phone-number']){ orderDetails.phone = params['phone-number']; conv.ask("..........random text............"); axios.post( 'https://API_URL/', orderDetails, { headers:{"Content-Type": "application/json"} }). then((res) => { if(res.data.success){ conv.close(`This is your order id ${res.data.orderID}`); //>>>>>>>API...

@nasirhm yes it does. I am able to console log my response(I can see this in firebase console). Its just the google actions where I am not able to use...

@nasirhm I am not sure how to find out that