The documentation claims that AuthenticationController can be created like this:
let authenticationController = AuthenticationController(client: vimeoClient)
But it actually requires two more parameters:
let authenticationController = AuthenticationController(
client: vimeoClient,
appConfiguration: appConfiguration,
configureSessionManagerBlock: configureSessionManagerBlock
)
Can you provide some information on those parameters and how to create them?