Reputation: 1091
I am creating an iPhone application and in that i am implementing the Facebook chat feature using Graph API and XMPP. It is working fine and I can chat. But the issue is, XMPP is not get authenticated for some users, whose online presence showing as mobile device icon in browser. Means in the Facebook web app, those friend's online status shows like a mobile device, not as normal green icon. I checked those accounts and the users are not logged in the mobile and only on the web app. is there any possible reason for this issue?
Please help.
Upvotes: 1
Views: 195
Reputation: 9055
You might want to make sure you are using the right authentication method on Facebook. If you use a proxy (or traffic get through your own server), you will need to implement X-FACEBOOK-PLATFORM auth method. You also need to make sure your traffic is encrypted (SSL/TLS)
Upvotes: 1