// Instance method to get our Twitter Profile Details
        public async void ShowTwitterProfile()
        {
            // Call our Instance method to get the user's Twitter Profile Details
            var ProfileInfo = await TwitterObject.GetTwitterProfile(TwitterAuthDetails.AuthAccount);

            // Construct our message to display within an alert dialog
            var profileDetails = new StringBuilder();

            profileDetails.AppendFormat("\nId: {0}",
                                        ProfileInfo.GetValue("id"));
            profileDetails.AppendFormat("\nName: {0}",
                                        ProfileInfo.GetValue("name"));
            profileDetails.AppendFormat("\nScreen Name: {0}",
                                        ProfileInfo.GetValue("screen_name"));
            profileDetails.AppendFormat("\nLocation:{0}",
                                        ProfileInfo.GetValue("location"));
            profileDetails.AppendFormat("\nDescription: {0}",
                                        ProfileInfo.GetValue("description"));
            profileDetails.AppendFormat("\nFriends: {0}",
                                        ProfileInfo.GetValue("friends_count"));
            profileDetails.AppendFormat("\nFollowers: {0}",
                                        ProfileInfo.GetValue("followers_count"));
            profileDetails.AppendFormat("\nFavourites: {0}",
                                        ProfileInfo.GetValue("favourites_count"));
            profileDetails.AppendFormat("\nurl: {0}", ProfileInfo.GetValue("url"));

            // Display an alert dialog with the user's profile details
            await DisplayAlert("Twitter Profile Details",
                               profileDetails.ToString(), "OK");
        }