Having trouble setting Configuration?

I’m attempting to make my first Extension, and so far I’m 90% of the way there. However, while on all apparent fronts setting the Configuration service in the Config panel works, the front-end panel cannot
get access to it - at least the way I’m currently trying to use this.

This is how the extension is currently being set:

function setChannelConfig( version, content ) {
twitch.configuration.set(
“broadcaster”, // This is the only valid value
version,
content
);
}

and I was under the impression to read the Broadcaster config, it would only take this:

console.log(twitch.configuration.broadcaster);

However, this just responds with undefined. What am I doing wrong with this?

I figured it out… whoops. It was because it wasn’t in onAuthorized:
twitch.onAuthorized(function(auth))