The full meaning of FQL is 'Facebook Query Language'. This is used to retrieve filtered data from Facebook API, similar to how an SQL query works with a database. You won't find it exactly like SQL query syntax all the time, and not all kinds of operations, too. But it definitely meets the demand. In this tutorial, I will try to explain using FQL in your .NET application with … [Read more...] about Using FQL With Facebook C# SDK
If you are already developing a Facebook application on the .NET platform, you must have noticed that the official c# SDK for Facebook API isn't quite enough for most of the developers as still many common implementations are to be handled by developers themselves that consume times/complexity in development and also be less stable. However, the developers' community has helped … [Read more...] about “Facebooksdk” – C#.NET Library For Facebook API
Nowadays, most web-based developers, whatever platform they work/specialize on (backend/front end/php/asp.net, etc.), possess some JavaScript knowledge. Also, in almost all third-party APIs, JavaScript implementation is very common. Facebook API isn't different from that also. They do have a robust implementation of JavaScript API to access their data. In this tutorial, I will … [Read more...] about Getting Started With Facebook Javascript API
What is Facebook Graph API?:Facebook Graph API is one that Facebook supports, but it's the major/core API with which most of the functionality can be implemented, and Facebook provides support for third-party applications. So, anybody interested in creating a Facebook application must know graph API. Besides retrieving/reading data from Facebook, this also provides methods … [Read more...] about Beginning With Facebook Graph API C#.NET
As a general Facebook user, when we go to use a Facebook application, we get a window titled 'Request For Permission.' After clicking the 'Allow' button, we can enter the application. This is a very usual scenario. It's a crucial stage for developing a Facebook application, where a couple of things must be noticed very carefully to create the process in the most suitable way. … [Read more...] about Important Factors On Facebook API Authentication