Can we create fulfillment service(end point) of google home without node.js?
Can we create fulfillment service(end point) of google home without node.js? I have created a web service in my application which does not support nodejs as an end point of fulfillment . I am getting request header correctly but the JSON data (request parameters) is garbage value. nodejs fulfillment request header JSON My question is:- Can we create fulfillment service(end point) of google home without nodejs ? fulfillment nodejs If yes, then what configurations I need to take care off ? 1 Answer 1 Absolutely. All you need to do fulfillment is A public HTTPS server with a valid certificate. Something that listens on that server, can handle JSON sent to it, and reply with JSON in the expected format. You can write this second one in any language you wish. If your actual problem is that the JSON being sent to you seems wrong, then you should probably post the code you're using, what you'r...