CAN I DELETE QUICKBLOX USER ACCOUNT WITHIN THE APPLICATION?
It is possible to delete only your own account, but not other users
accounts (since you are not the owner). For this you can use the
following:
_iOS_
You can delete only current user
[QBReq...
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 password for XMPP connection: either the same
passwor...
HOW TO CREATE USER LOGIN AND PASSWORD?
Android
User login and password can be created the following way:
final QBUser user = new QBUser("testuser12344443", "testpassword");
QBUsers.signUp(user, new QBCallbackImpl() {
@Override
public void onComplete...
HOW TO FIND OUT WHETHER QUICKBLOX USER IS ONLINE?
There are two ways to find out whether QuickBlox user is online:
1. Using REST API. Please check the guide here
http://quickblox.com/developers/SimpleSample-users-ios#Online.5COffline_status
[http://qu...
HOW TO GET A LIST OF ROOMS WHERE THE USER IS LOGGED IN?
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 ro...
HOW TO LIST USERS OF PARTICULAR APPLICATIONS CREATED UNDER ONE QB
ACCOUNT?
If you have several applications created under the same QB account and
you wish to list users belonging to a particular application (not all
users under your account), you can us...
HOW TO RETRIEVE APPLICATION POPULAR TAGS (IOS)?
There is no direct option in iOS SDK to retrieve popular tags.
Though you can hardcore all your tags or obtain tags from user and
then retrieve users by selected tag using
http://quickblox.com/developers...
How to retrieve user by ID and set him as an opponent (iOS)?
For Chat you don't need full user body, you can send chat messages
directly to user ID.
More info you can find here
http://quickblox.com/developers/SimpleSample-chat_users-ios#Create_new_1-1...
I AM USING QBCHATMESSAGE. HOW CAN I GET THE SENDER'S PROFILE PHOTO AND
USER ID?
You can use message.senderID to get sender's user id.
In order to get an avatar do the following:
How to update user's avatar
http://quickblox.com/developers/SimpleSampl...
I HAVE RECEIVED AUTH TOKEN AND SECRET USING TWITTER REVERSE AUTH BUT
WHEN I PASS IT TO QB IT SAYS BAD AUTHENTICATION DATA, WHY?
Make sure that you set API KEY, API SECRET and callback for your app
http://quickblox.com/developers/Social_Networks_Integrat...
I WANT TO VERIFY AND STORE USERS INFO WITH HELP OF CUSTOM OBJECT TABLE
INSTEAD OF USERS MODULE, IS IT POSSIBLE?
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
...
I WOULD LIKE TO RETRIEVE USERS PASSWORD, BUT I ALWAYS GET NULL VALUES.
It is unsafe to store the password in an open form, so it is OK that
you cannot retrieve it.
For security reasons only user can know his/her password.
IS IT POSSIBLE TO ALLOW WRITE ACCESS TO MULTIPLE USERS ON QUICKBLOX
FRAMEWORK?
Yes, it is possible to allow write access to multiple users.
QuickBlox released iOS SDK 1.7 with Permissions API, please check more
details here
http://quickblox.com/develo...
IS IT POSSIBLE TO CHANGE USER_ID?
It is not possible to change the user_id as this is the ID of record's
creator.
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];
user.ID = 300;
user.oldPassword = @"fg...
IS THERE A METHOD IN QUICKBLOX IOS SDK FOR CHECKING/STORING A VALID
USER SESSION?
Assume you create a session with Facebook login:
QBASessionCreationRequest *extendedAuthRequest =
[QBASessionCreationRequest request];
extendedAuthRequest.socialProvider ...
Why I get "Forbidden. Need user." error?
The error means that in order to perform any actions you need to login
and act on user behalf.
You can use one of the following:
_iOS_
[QBUsers logInWithUserLogin:@"igorigor" password:@"igorigor"
delegate:sel...