I'm assuming you're talking about ApplicationOnlyAuthorizer. The demos assign to IAuthorizer, so you need to convert to ApplicationOnlyAuthorizer to expose the BearerToken, like this:
await auth.AuthorizeAsync();
string bearerToken = (auth as ApplicationOnlyAuthorizer).BearerToken;