I'm kind of new to API's so please excuse me if my question seems easy or ridiculous. I know and understand how you can make a call to an API to retrieve information that the API allows. But say that I have an app(Rails is what I know best), and other applications are making API calls to my app. Is there a way that I can request or receive information from that app without having to make calls to their API? I guess a similar comparison would be to ask how the Facebook API lets other applications send information such as posts to the user's account. Thanks in advance for your help.
|
|
|
API stands for Application Programming Interface. It defines the way one 'module' of code works with another. APIs typically describe 'methods' (or 'procedures', or 'functions') that you 'call' against that module, service, etc. They can be for any purpose. So if I have a web service that allows you to store your pictures on, I would have an API that let you do multiple things. For example:
The point of this is, it is a service that has methods that you call to. As far as web services go, I don't know if this applies, but for the call initiation to go the other way, you get into what are called callbacks. A callback is just what its name implies - the service, module, etc. calls back to your code. In order for the module to know about your callback, however, you must typically register the callback, usting some API function. An example of this is OpenGL (actually glut). Your application defines how a scene is drawn. In order for this to happen, you register your "draw" function with glutDisplayFunc(func). Then, whenever OpenGL decides it needs the scene drawn, it calls the callback function you registered. Your draw function then draws the scene and returns control to OpenGL. As for your Facebook questions, I haven't done any Facebook API stuff for quite a while, so I don't know how it works any more. But if Yahoo wants to post something to my profile, it calls a Facebook API function with my user id and the details it wants to post. So as far as I know, there's nothing terribly complex about that situation. |
||||
|
|