user735687
user735687

Reputation: 21

how to write on facebook wall in ASP .Net

I want to post on facebook wall from my website, i had built the site in ASP .Net, I don't know how to perform this task. Can anyone please guide me or give me a script to post on facebook wall.

Upvotes: 0

Views: 664

Answers (2)

Sambo
Sambo

Reputation: 1472

I've had some fun playing with the Facebook C# SDK for creating Facebook applications.

Are you using C# on your site?

The SDK is quite easy to get started with and there are a few tutorials etc...

Facebook C# SDK

Upvotes: 0

painotpi
painotpi

Reputation: 6996

Here is a documentation on Getting started with Facebook developers

The Graph API is the core of Facebook Platform, enabling you to read and write data to Facebook. It provides a simple and consistent view of the social graph, uniformly representing objects (like people, photos, events, and pages) and the connections between them (friendships, likes, and photo tags).

Here's a sample application from CodeProject to use the Graph API.

hope it helped !

Upvotes: 1

Related Questions