Twitch sends hub.challenge as a query string argument.
In PHP you grab this with $_GET['hub_challenge'] iirc
So
if (isset($_GET['hub_challenge'])) {
echo $_GET['hub_challenge'];
wp_die();
}
Should suffice for acknowledge in Wordpress. As long as this fires before any template code runs.