Facebook


List of examples:

Facebook apps

Creating a Facebook app




// Specifies the app's credentials
// Replace the values with the App ID and App Secret for your own Facebook app
// See the documentation for creating a new Facebook app: http://kentico.com/CMSPages/DocLinkMapper.ashx?version=latest&link=sm_connecting
string appId = "yourAppID";
string appSecret = "yourAppSecret";

// Creates a new Facebook app object
FacebookApplicationInfo newApp = new FacebookApplicationInfo();

// Sets the properties of the Facebook app
newApp.FacebookApplicationDisplayName = "New app";
newApp.FacebookApplicationName = "NewApp";
newApp.FacebookApplicationSiteID = SiteContext.CurrentSiteID;
newApp.FacebookApplicationConsumerKey = appId;
newApp.FacebookApplicationConsumerSecret = appSecret;

// Saves the Facebook app to the database
FacebookApplicationInfoProvider.SetFacebookApplicationInfo(newApp);


> Back to list of examples

Updating a Facebook app




// Gets the Facebook app
FacebookApplicationInfo app = FacebookApplicationInfoProvider.GetFacebookApplicationInfo("NewApp", SiteContext.CurrentSiteID);

if (app != null)
{
    // Updates the properties of the app
    app.FacebookApplicationDisplayName = app.FacebookApplicationDisplayName.ToLowerCSafe();

    // Saves the modified app to the database
    FacebookApplicationInfoProvider.SetFacebookApplicationInfo(app);
}


> Back to list of examples

Deleting a Facebook app




// Gets the Facebook app
FacebookApplicationInfo app = FacebookApplicationInfoProvider.GetFacebookApplicationInfo("NewApp", SiteContext.CurrentSiteID);

if (app != null)
{
    // Deletes the Facebook app from the database
    FacebookApplicationInfoProvider.DeleteFacebookApplicationInfo(app);
}


> Back to list of examples

Facebook pages

Creating a Facebook page




// Specifies the properties for accessing the page
// Replace the values with the Facebook ID and page access token of your own Facebook page
// To find a page access token, visit https://developers.facebook.com/tools/explorer and select your app in the list
// See the Facebook documentation for details https://developers.facebook.com/docs/pages/access-tokens
string facebookPageId = "yourPageId";
string pageAccessToken = "yourPageAccessToken";

// Gets the Facebook app you want to associate with the page
FacebookApplicationInfo app = FacebookApplicationInfoProvider.GetFacebookApplicationInfo("NewApp", SiteContext.CurrentSiteID);                

// Creates a new Facebook page object
FacebookAccountInfo page = new FacebookAccountInfo();

// Sets the basic properties for the page
page.FacebookAccountDisplayName = "New page";
page.FacebookAccountName = "NewPage";
page.FacebookAccountSiteID = SiteContext.CurrentSiteID;
page.FacebookAccountFacebookApplicationID = app.FacebookApplicationID;

// Sets the ID and access token for the page
// The ID is used to identify the page later when posting on its wall
page.FacebookAccountPageID = facebookPageId;
page.FacebookPageAccessToken = new FacebookPageAccessTokenData(pageAccessToken, null);

// Saves the Facebook page to the database
FacebookAccountInfoProvider.SetFacebookAccountInfo(page);


> Back to list of examples

Updating a Facebook page




// Gets the Facebook page
FacebookAccountInfo page = FacebookAccountInfoProvider.GetFacebookAccountInfo("NewPage", SiteContext.CurrentSiteID);

if (page != null)
{
    // Updates the page's properties
    page.FacebookAccountDisplayName = page.FacebookAccountDisplayName.ToLowerCSafe();

    // Savez the changes to the database
    FacebookAccountInfoProvider.SetFacebookAccountInfo(page);
}


> Back to list of examples

Deleting a Facebook page




// Gets the Facebook page
FacebookAccountInfo page = FacebookAccountInfoProvider.GetFacebookAccountInfo("NewPage", SiteContext.CurrentSiteID);

if (page != null)
{
    // Deletes the Facebook page
    FacebookAccountInfoProvider.DeleteFacebookAccountInfo(page);
}


> Back to list of examples

Facebook posts

Creating a Facebook post




// Gets the page to which the post is tied
FacebookAccountInfo page = FacebookAccountInfoProvider.GetFacebookAccountInfo("NewPage", SiteContext.CurrentSiteID);

if (page == null)
{
    throw new Exception("[FacebookApiExamples.CreateFacebookPost]: Page 'New page' was not found.");
}

// Creates a new Facebook post object
FacebookPostInfo post = new FacebookPostInfo();

// Sets the properties of the post
post.FacebookPostFacebookAccountID = page.FacebookAccountID;
post.FacebookPostSiteID = SiteContext.CurrentSiteID;
post.FacebookPostText = "Sample post text.";

// Sets the publish time for the post
post.FacebookPostScheduledPublishDateTime = DateTime.Now + TimeSpan.FromMinutes(5);

// Specifies that the post is not tied to a document
post.FacebookPostDocumentGUID = null;

// Saves the Facebook post to the database
FacebookPostInfoProvider.SetFacebookPostInfo(post);


> Back to list of examples

Updating a Facebook post




// Gets the page to which the post is tied
FacebookAccountInfo page = FacebookAccountInfoProvider.GetFacebookAccountInfo("NewPage", SiteContext.CurrentSiteID);

if (page == null)
{
    throw new Exception("[FacebookApiExamples.GetAndUpdateFacebookPost]: Page 'New page' was not found.");
}

// Gets the first Facebook post on the page
FacebookPostInfo post = FacebookPostInfoProvider.GetFacebookPostInfosByAccountId(page.FacebookAccountID).TopN(1).FirstOrDefault();

if (post != null)
{
    // Updates the text of the post
    post.FacebookPostText = post.FacebookPostText + " Edited.";

    // Saves the changes to the database
    FacebookPostInfoProvider.SetFacebookPostInfo(post);
}


> Back to list of examples

Deleting Facebook posts




// Gets the page to which the posts are tied
FacebookAccountInfo page = FacebookAccountInfoProvider.GetFacebookAccountInfo("NewPage", SiteContext.CurrentSiteID);

if (page == null)
{
    throw new Exception("[FacebookApiExamples.DeleteFacebookPosts]: Page 'New page' was not found.");
}

// Gets all Facebook posts on the page
var posts = FacebookPostInfoProvider.GetFacebookPostInfosByAccountId(page.FacebookAccountID);

// Deletes the Facebook post from Kentico and from Facebook
foreach (FacebookPostInfo deletePost in posts)
{
    FacebookPostInfoProvider.DeleteFacebookPostInfo(deletePost);
}


> Back to list of examples

Publishing a Facebook post




// Gets the page to which the post is tied
FacebookAccountInfo page = FacebookAccountInfoProvider.GetFacebookAccountInfo("NewPage", SiteContext.CurrentSiteID);

if (page == null)
{
    throw new Exception("[FacebookApiExamples.PublishPostToFacebook]: Page 'New page' was not found.");
}

// Gets the first Facebook post on the page
FacebookPostInfo post = FacebookPostInfoProvider.GetFacebookPostInfosByAccountId(page.FacebookAccountID).TopN(1).FirstOrDefault();

if (post == null)
{
    throw new Exception("[FacebookApiExamples.PublishPostToFacebook]: No posts were created, or they have been deleted.");
}

// Publishes the post. The post is scheduled to be published if its FacebookPostScheduledPublishDateTime value is set in the future.
FacebookPostInfoProvider.PublishFacebookPost(post.FacebookPostID);


> Back to list of examples