Facebook App development
Freebie SMS Facebook App
Download link: Download Facebook App with source code in C#
Facebook link: Free SMS Facebook App
This is a Facebook App for sending free SMS messages to UK mobile phones,
It was created with the asp.net starter kit for C# 3.5. and can be downloaded from the links above
with full source code.
The only real departure from a standard asp.net page, is that it gets the ‘from name’ from the Facebook profile, like this:
protected string GetUserName()
{
try
{
facebook.Schema.user userinfo = Master.API.users.getInfo(Master.API.uid);
return userinfo.first_name;
}
catch
{
return "Someone";
}
}
Note, that the exception can be thrown on first load, before the user has accepted access to their own profile, hense
the try/catch