I want to invoke my application from google home simulator but without integration of dialogflow is that possible? i provided fulfillment url in Actions Console but it does not invoke my app and shows me an error.
You cannot use standard Google Assistant features in the Simulator. If you want to try them, use Google Assistant on your phone or other compatible devices.
below is my php code.
sendMessage(array(
'expectUserResponse' => true,
'expectedInputs' =>
array (
0 =>
array (
'inputPrompt' =>
array (
'richInitialPrompt' =>
array (
'items' =>
array (
0 =>
array (
'simpleResponse' =>
array (
'textToSpeech' => 'Hi!',
),
),
),
),
),
'possibleIntents' =>
array (
0 =>
array (
'intent' => 'actions.intent.TEXT',
),
),
),
),
'conversationToken' => '{"data":{}}',
'userStorage' => '{"data":{}}',
));