Unfortunately, you cannot refuse using QBUser. Both password and login will be stored in it. Each custom object has User Id field, so you can use it to connect user and custom object with data. Every ...
To get the list of rooms where the user is logged in, not the complete rooms list, you can make a wrapper in Custom Objects: for each user add/delete/store custom objects (in your case these are rooms...
Yes, you can. The easiest way is: 1. Log in to your QB account; 2. Choose your app; 3. Go to the Users section and check off the boxes against the users you want to delete. 4. Click on the Remove sele...
The error shows up usually in two cases: 1. A user does not exist in the system. 2. A session was created without user credentials. Please visit for more information: Authentication for Server API or ...
It is possible to retrieve users by tags, ID, email, login, full name, phone number and external user ID using iOS/Android/JavaScript Please review the corresponding section in our official documentat...
It is not possible to change the user_id as this is the ID of record's creator....
Assume you create a session with Facebook login: QBASessionCreationRequest *extendedAuthRequest = [QBASessionCreationRequest request]; extendedAuthRequest.socialProvider = @facebook; extendedAuthReque...
Facebook user cannot log into the chat, why? There are two ways of users authentication: standard login and password and Facebook/Twitter authentication. Depending on this you need to use appropriate ...
Is it possible to change user’s password after login? Yes, there is actually a possibility to change password after user has logged in. You can use the following for iOS: QBUUser *user = [QBUUser user...
There are three option how to create user login and password: 1. Using QuickBlox SDKs. This way usually used if you build your application with QuickBlox SDKs. You can find more information in the Use...