I am building an api using asp.net 5 rc2. I am trying to implement openiddict-core, found here for local accounts and i also want to allow for users to use external logins,
Have you tried registering the Identity middleware by adding app.UseIdentity(); before you register the GoogleAuthentication middleware?
app.UseIdentity();