How does application integration work on social networks?

0

It has become increasingly common to integrate applications of various types into social networks, such as Facebook, Twitter and even Github. I wanted to understand how this integration works. Gitter for example allows chat interaction in Github repositories ... On Facebook, anyone can go into the developers section and create an application to interact with pages and people. Even Google Hangouts has apps to use to the user's liking at the time of the conferences. I'm very curious about how this works.

How could I reproduce something like this in an application? Do these platforms simply provide an API so that these additional apps can be integrated? Or is there something else besides that? References for reading are most welcome ...: D

    
asked by anonymous 11.05.2015 / 16:39

1 answer

1

The protocol used for application integrations is O-Auth. I've never implemented it on the side of my application, I've already tested the use of integration with applications like the ones mentioned in your question.

Also before long I did not know that it was a standard for authentication of external clients to applications. The site that has all the documentation is: link

Hope to have helped!

    
11.05.2015 / 16:47