Pulling author name via $_GET parameter

You get the author ID of the post ID via get_post_field

$post_author_id = get_post_field( 'post_author', $post_id );

With this post ID you get all author meta data, also the name like

the_author_meta( 'display_name', $post_author_id );