Authentication
Supported Authentication Methods
OpenID Connect
Authentication with Opaque Token
try kapeSDKManager.identity().authenticateWithOpaqueToken(
userId: "user_1234",
token:"ANYTOKEN")Authentication with Legacy XV Authentication
let credentials = AuthCredentials(
accessToken: "<ACCESS TOKEN>",
//not needed
refreshToken:"",
//not needed
idToken: "")
try kapeSDKManager.identity().authenticateWithXvLegacyAuthCredentials(
authCredentials:credentials
)Apple InApp Receipt Authentication
SDK Methods
Getting the currently logged in User
UserProfile
Name
Type
Description
Getting the last known logged in User
Logging out a User
Last updated