You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your question. You can autogenerate a user as described in our iOS Guide so this way people can download and start using your app without login and then later on if they decide to log-in you can link the autogenerated user to the user's authentication.
User.signup { user, error in
if let user = user {
//success
} else {
//error
}
}
Please check this error i am getting when i call signup function
expression produced error: error: /var/folders/lj/5bwrz2156vv6s0kgqxs1qhsm0000gn/T/expr12-f7a657..swift:1:80: error: 'Error' is ambiguous for type lookup in this context
Swift._DebuggerSupport.stringForPrintObject(Swift.UnsafePointer<Swift.Optional>(bitPattern: 0x11f4f4320)!.pointee)
^~~~~
Swift.Error:99:17: note: found this candidate
public protocol Error {
^
Kinvey.Error:2:13: note: found this candidate
public enum Error : Error, LocalizedError, CustomStringConvertible, CustomDebugStringConvertible {
^
Hi,
I don't need use login in app and need to access collection() data without user login, is there possible in sdk?
The text was updated successfully, but these errors were encountered: