I was thinking of integrating facebook chat into my own site. Is there a JavaScript API for it? If so, can someone point me to a example/tutorial?
Facebook has one chat api to integrate its xmpp based chat into Web-based, desktop, or mobile instant messaging products.
Here is the reference.
https://developers.facebook.com/docs/chat/
Facebook chat is using XMPP. You just need to write an XMPP client in javascript. There's even a book (reasonably good, I read it!): http://professionalxmpp.com/
This is the closest you will get. http://developers.facebook.com/docs/reference/plugins/live-stream/
Related
I am new to programming field and I am basically trying to built a system based on web and app which is web based where two users can communicate and buy products from each other on my platform. The question I want to know is there any sytem if i can just code server side logic and connect front end of both web and app to the same logic which is saved on the server.....I hope am able to clearify my question...sorry for the bad english
I was looking for different solution but can't find a reliable one
yes, you can connect your website and flutter app, by using http pub
and get the data from api.
or you can build your website with flutter and in the same as app.
I hope that is answer your question, if not please explain more about what you mean
I am trying to integrate a feature in my react app in which we can send message to our followers the invitation to our app. I searched so many resources but couldnt find.
Two possible solutions:
Use any kind of backend (Python, Ruby, et.c.) and kick Twitter official API for this
Use tweet button which is embed to your react code
this question may sound stupid, but im getting frustrated from searching around, and i cant manage to do that:
I want to create a button on my web (not an applications if that matters), and when the user will click on it, it will post a dynamic message on his wall.
Do i have to use javascript SDK for it, or is there a simpler way?
Thanks!
You have to use Facebook Connect (Facebook SDK for Javascript).
Take a look at this:
https://developers.facebook.com/docs/javascript/quickstart/v2.2
But before use this API you need to create an APP ID in the Facebook developers page and use this ID to authenticate through OAuth:
https://developers.facebook.com/apps
This link also explains you how to use Facebook SDK with jQuery
https://developers.facebook.com/docs/javascript/howto/jquery
I hope it helps.
Edited:
If you want something really simple. You can use Social Plugins to allow the user share your website. But I'm not really sure if you want to post a custom message for the user.
https://developers.facebook.com/docs/plugins/share-button/
I'm developing a site similar to blog. In that I would like to add a facebook notification feature.
For example, if I created one article it should send a notification to the subscribed facebook users.
I have done facebook share. But I don't know about this.
Note: I'm using asp.net and c# for the web development.
Is this possible. if possible, can someone say a way to achieve it.
First of all You will need to create a facebook application and add your web page as a "Web Page with Facebook login": You can find this setting in application settings. After you will need to log in your blog users via facebook and ask for some basic permissions (No special permission needed for sending notifications.) And after all these steps you will be able to send notifications to your users. Here are some resources that might help you.
https://developers.facebook.com/docs/games/notifications/
https://developers.facebook.com/docs/web/gettingstarted/
Here is the C# SDK resource.
I have a QML application and I am using functions in Javascript to "communicate" with Facebook Graph API. I have succeeded to post on my friend's wall but Now I want to send him a message to his inbox(private message). I noticed that Graph API doesn't support this So is there any other way to send the message? does Facebook offer any payed api that may help me ?!!
Thanks
Facebook inbox and chat share the same Facebook backend , in fact , as you know , we could call it chat if online , inbox if offline
So to send message you should refer to Facebook chat docs
It requires an XMPP authentication and it can be done with some Qt/C++ glue to the QML UI
see https://developers.facebook.com/docs/chat/