I am working on group chat using robbiehanson/XMPPFramework. I have done sending invitation,accepting invitation and messaging in group chat. Here I want to show some information of user who sent message in group chat including his avatar. I can get the users information from XMPPUserCoreDataStorageObject. this case is applicable only if those users are present in my friend list. I need to get the users information who are not in my friend list. Is there any possible way to achieve this. Please suggest me
How to get the user information who are not in my roster list?
390 Views Asked by Rafeeq At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in XMPP
- sendxmpp not authorized failure (Error AuthSend)
- C# agsxmpp Domain vs connectionserver
- Android Smack4.1.1 XMPP FileTransfer Issue with Iphone
- How to login with recently registered user to openfire in ios?
- Server less Group Messaging (chating) Xmpp
- SASLException not authorized using smack 4.1.1
- Android aSmack - How to make custom message extension for file sending?
- Unable to receive upstream GCM messages with Node.js + XMPP
- Is Node-XMPP useless ? Choosing XMPP server
- Allow ejabberd_service (Jabber Component Protocol) to modify user's roster
- oauth2 authentication support in ejabberd
- iOS XMPP received message in conversation screen
- Typing Status Smack 4.1
- how ot get lastactivity using openfire server and asmack in android
- xmpp send, wait for response
Related Questions in OPENFIRE
- Openfire Smack Connection issue
- How to login with recently registered user to openfire in ios?
- Cannot install converseJS properly in Laravel 5
- OnLogin evnet not firing on agsXMPP
- how ot get lastactivity using openfire server and asmack in android
- Android Smack MessageEventManager not compiling
- Openfire websocket configuration
- Check if User is Authenticated in OpenFire
- How to Kick the User or Member from XMPPRoom
- How to add custom XML element to Message using PacketInterceptor in Openfire plugin using XMPP
- XMPPError: not-authorized - auth android
- How retrieve Chat History using Java Smack library from openfire server?
- XMPP remote server connection issue iOS
- how to extract data from restclient.entity.UserEntities in openfire rest API?
- How does one know what IDE was used for an open-source Java application?
Related Questions in XMPPFRAMEWORK
- iOS XMPP not able to send message
- xmpp - how to get room chat history
- expected an objective-c directive after '@'
- How to get last conversed user using XMPP ios8?
- MUC Light using XMPPFramework
- XMPP remote server connection issue iOS
- MAM XEP-0313 - Query conversation list for a particular user
- How to add user to existing ROOM in XMPP iOS?
- How we can upload image or photos to ejabberd XMPP web server?
- Ejabberd 16.09 Muc Discovery
- XEP-0363: HTTP File Upload in Swift
- XMPPFramework in podspec
- "unavailable"(Offline) presence not updating at the both end
- How to connect XMPP server through XMPPFramework in ios in objective c
- Trying to install XMPPFramework in my objective c Project using Podfile
Related Questions in ROSTERS
- How can I send message to all my friends who are in my roster or broadcast a message to everyone in my roster in one go, using ejabberd?
- Quota script for a roster
- Error while initializing roster storage XMPPFrameWork ios
- Automating a roster with bash
- Ejabberd Roster management with mobile client
- Receive 'subscribe' presences with Strophe.js Roster plugin and Ejabberd
- Strophe.js: Fetch group wise users from roster instead of fetching all together and local filter
- How can shared roster groups in different virtual hosts get presence of each other?
- XMPP resolved names from roster
- optpanner roster unable to add tenant
- Nested groups in ejabberd
- How to get the user information who are not in my roster list?
- Openfire Roster communication only
- How to Group Measures and Make Columns Table Source Name
- Function overwrite
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In XMPP, avatar (vcard) of any user can be fetched irrespective of roster entries. So if you are trying to query vcard of any other user of your service, then it should work. If it's not working, please provide the both "get" and "result" IQ here for vcard request.
However, if you are trying to query presence status of other user's then yes there is restriction of roster. This can be overcome by implementing following logic:
User registers in your application (Android or iPhone), determine registered contacts of your service from user contact book and automatically add them in your roster.
Also Implement roster request handling in your application that when it get's request for allowing other user to add you in his roster, automatically accept the request and send request to that user to add him in your roster too.
Now again accept that request.
In this way, you can add users in roster behind the scenes and user's can view the information of other users just like WhatsApp.