Remote Action Execution

The Remote Action Execution action is used to obtain a "Remote Action Token" needed for executing actions on remote devices using Tasker. This token allows other devices to perform tasks or set variables on the device where the token was generated.

Steps to use Remote Action Execution:

Usage Example:

The Remote Action Execution function operates using Firebase Cloud Messaging (FCM). For more detailed technical documentation, visit Firebase Cloud Messaging docs.

You can execute remote actions from anywhere by sending an HTTP request to FCM directly with a message formatted like this:

		
{
	"validate_only": false,
	"message": {
		"token": "...",
		"android": {
			"priority": "high"
		},
		"data": {
			"task": "Test",
			"%test": "some value"
		}
	}
}
		
	

You can add any variables you want to the data section to customize the remote action.