static async Task DeleteWebhookAsync(TwitterContext twitterCtx)
        {
            ulong webhookID = GetWebhook();

            var acctActivity = await twitterCtx.DeleteAccountActivityWebhookAsync(webhookID);

            Console.WriteLine($"Webhook, {acctActivity.WebhookID}, has been deleted.");
        }