One-click Auth
Introductionβ
Handling Authentication Requestsβ
StarTowerWalletKit.instance.authenticateRequestPublisher
.receive(on: DispatchQueue.main)
.sink { result in
// Process the authentication request here.
// This involves displaying UI to the user.
}
.store(in: &subscriptions) // Assuming `subscriptions` is where you store your Combine subscriptions.Authentication Objects/Payloadsβ
Approving Authentication Requestsβ
Rejecting Authentication Requestsβ
Testing One-click Authβ
Last updated
