List all blog categories

Can I use the following code for my question.

<?php $args = array('taxonomy' => 'blogcategory'); ?>
<?php $tax_menu_items = get_categories( $args );
foreach ( $tax_menu_items as $tax_menu_item ):?>

    <a href="https://wordpress.stackexchange.com/questions/143389/<?php echo get_term_link($tax_menu_item,$tax_menu_item->taxonomy); ?>">
        <?php echo $tax_menu_item->name; ?>
    </a>

<?php endforeach; ?>

I found it from here

Updated: I found the answer I was looking for

<?php

$taxonomy = 'blogcategory';
$tax_terms = get_terms($taxonomy);
?>
<ul>
<?php
foreach ($tax_terms as $tax_term) {
echo '<li>' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a></li>';
}
?>
</ul>