private void SubscribeToPubSub()
    {
        Debug.Log("Ready to listen (PubSub)");

        // We'll assume the request went well and that we made no typo's, meaning we should have 1 user at index 0
        string userId = api.Users.v5.GetUserByNameAsync(channel_name).Result.Matches[0].Id;

        Debug.Log(userId);

        // Channel PubSub subscriptions
        pubSub.ListenToFollows(userId);
        pubSub.ListenToSubscriptions(userId);

        Debug.Log("Listening to PubSub...");
    }