Display Registered Taxonomies

Have a look at the codex page for wp_list_categories.

$args = array( 'taxonomy' => 'article_topics' );
wp_list_categories( $args );

For the taxonomy terms assigned to individual posts, get_categories also accepts a taxonomy argument.

error code: 523