There are many Libraries available for C# and Dotnet to publish on facebook.
According to facebook Wiki posting on a wall is very confusing and very difficult to write a program to publish on a wall.
I spent around 2 weeks reading many articles and many documents, Wiki on facebook but in vein and tried many ways and finally I got one workable model. Below are 5 simple steps to publish on a Facebook wall.
Step1: Login to Facebook
First login to Facebook and goto the url http://www.facebook.com/developers/ then
Click on “+ Set Up New Application” button to start creating the application as shown below.
Provide the application name, click agree for facebook terms and click on “Create Application” button.
Fill in application Name
Now Application is created for you. Just copy the Application API Key, Application Secret and Application ID details which will be used to write the application code.
Now goto Canvas link and enter any url.
Next goto Connect URL link and enter the same url.
Then click on Save. That’s it we have created a facebook application with an Iframe.
Now Copy Application API Key, Application Secret and Application ID details which will be used to write the application code.
Now download any of the available libraries on facebook http://wiki.developers.facebook.com/index.php/User:ASP.NET
(OR)
Microsoft SDK for Facebook Platform, which supports Facebook Connect, FBML and IFrame canvas page applications, and ASP.NET MVC. For issues and discussions about the SDK see the project on Codeplex.
Step2: Generate One Time Session key
How to generate One Time Session key:
Run below URL to get temporary token for the selected user by logging into Facebook.
https://login.facebook.com/code_gen.php?api_key=API_KEY&v=1.0
Note: Please replace “API_KEY” with your application API key from above page.
Then we will get a temporary token key.
This is one time token key that we can use to generate a permanent session key. Careful! Don’t try to execute this programs many times
Step3: Generate one time session key
Below is the sample code to generate one time session key.
For example, the full URL for logging in a user could be:
If the user is redirected to the URL specified by the next
parameter, then Facebook grants your application a session. This session is appended to the URL as a JSON-decodable object of the form:
In continuing with the above example, the redirect for a successful login would be:
If the user grants your application the offline_access extended permission, 0 gets returned for expires
and the session never expires unless the user removes the application. In this case, you should store the session key so the user doesn’t have to log in the next time he or she launches your application.
Once the browser has been redirected successfully and you have your session information, you should automatically close the browser window.
Note: The above code will execute only once. We should note down the above session key, This will be used to auto login into the application.
If you don’t save these session key values you should generate other token key to create one time session key.
Step4:
Giving Permission to your application to publish on facebook wall. To give permission just replace the your API key in below URL and execute in browser.
Then you must see the below 3 Screens
If you don’t see the below then your call back URL or Canvas URL must be incorrect, please check again your application settings and execute the URL again.
Then on final page, you will see a success message. That’s it you have given permission for read_stream,publish_stream and offline_access.
Step5: Publishing the message with Image and link on Facebook Wall using cSharp/ C#
Publishing a Post With Image and Action Link in C# using facebook developer toolkit v2
C# Code to create facebook object with onetime session key and publishing the message on Facebook Wall.
public void Post(facebook.API fbAPI, string appLink) { string response = fbAPI.stream.publish( "publish steven on facebook.", new attachment() { name = "I am a good guy !", href = appLink, caption = "{*actor*} Steven Publish on facebook wall", description = "Helping other people, I became a new good guy.", properties = null, media = new List<attachment_media>() { new attachment_media_image() { src = "http://blog.theunical.com/wp-content/uploads/2009/11/start-application.jpg", href = appLink } } }, new List<action_link>() { new action_link() { text = "Become a good guy", href = appLink } }, null, 0); }
Now you will see the post on wall Great.
So thrilling isn’t we can also publish photos videos on wall.
http://wiki.developers.facebook.com/index.php/Stream.publish
have a great day
— Steven
Please don’t copy this content to any site. This is fully protected by TheUnical Technologies
I have gone through the steps you have given and also I can see the pop-up, but can’t see the result[Content, image and text].
I have gone through the steps you have given and also I can see the pop-up, but can’t see the result.
Hi Dinesh, Check Comments from this section if that helps you http://blog.theunical.com/facebook-integration/5-steps-to-publish-on-a-facebook-wall-using-php/
Dinesh The URL need to be Public Available URL and not a local URL, Check it once.
I checked the concept. I liked the way you have provided the info..
Hi, great tutorial. Although, having trouble at step 4, I don’t see the 3 screens, I only get a “Success” message. I imagine it’s the callback or canvas URL like you say, but could you elaborate here. You say above, it can be any URL. Surely there is some sort of stipulation?
Can you please show the code you have to have to initialize a session before calling the post method.
just like you did on the php sample.
appreciate your help.
I can’t put it working, i receivce the error “Invalid Signature” all the time.
I Call post method on this way Post(new API(), “http://www.xxxx.com”)
Thanks
Fantastic work……..This is what I was looking for……..hank you so much……keep sharing
thx!
What do I have to pass as the API. I am getting “Session Key invalid or no longer valid.”
@sud Look into my other post http://blog.theunical.com/facebook-integration/5-steps-to-publish-on-a-facebook-wall-using-php/
and check my comments there, hope your problem get solved
I just recently discovered your Blog and appreciate you sharing your bout with Facebook OApplication with the world. but this site also search best knowledge Facebook Application.
http://www.socialium.com/portfolio.php
“
hi
this application is great…and working properly…
but i need a application or any function in facebook api, by which i fetch user’s wall message…..please reply if u have any suggestion …its urgent.
thank u..
Hi ..
Great work..
It is simple but very helpful.
but like Nidhi, I want to fetch all the information like friend list,comments, Wall messages and some other information on my website. Is anyone there who can help me out on this problem..? Its really urgent..
hi
the following link is very helpful…
http://www.codeproject.com/KB/aspnet/fb_connect_asp_net.aspx
i used it ,its only provides friendlist….
but many other function is also there in facebook api….
by using that i fetched inbox messages,groups,wall messages,
hi Steven your application is really very great and useful.
But I cant able to use your Step 5.. get errors in my page..
May be i am using wrong,
So can u give one sample Dotnet application.
Hi,
Thanks for sharing such a wonderful instruction.
I followed your instructions to get offline access to users facebook wall. It worked like a charm.
However since about a month, new users cannot provide offline_access or publish_stream access to the application. It returns
“&error_code=1&error_msg=Security+check+failed”.
The URL I’m using to get offline access is “http://www.facebook.com/login.php?api_key={API_KEY}&connect_display=popup&v=1.0&next={URL}&cancel_url={URL}&fbconnect=true&return_session=true&session_key_only=true&req_perms=publish_stream,offline_access”
I’ve reported it as a bug in Facebook’s bugzilla but with no result.
I believe that you’ll be able to help me resolve this issue.
Thanks,
Sudeep
Thanks for posting this use full information.
Initially it is showing some problems like , need userid and session id … but I rectified those… Thanks for showing some path to rectify this problem
on this line:
public void Post(facebook.API fbAPI, string appLink)
i’m getting error:
The type or namespace name ‘facebook’ could not be found
I’ve imported all namespaces, where i’m missing.
what is to pass in fbAPI parameter?
i am stuck at
Step2: Generate One Time Session key
i always get “An error occured, try again later” about last three days.Looks like This manual is expired. need update.
great i’m searching for a long time …………………….
for some days ago i thought to start progamming and searching our google and found your website its great for me thanks to share its great sir 🙂
It is really worth reading this article, i will try out this method right now and will see whether it is working fine for me .
sir where to write all these codes in example.php in facebook php files
or in our index.php file
@Malik see this post http://blog.theunical.com/facebook-integration/5-steps-to-publish-on-a-facebook-wall-using-php/
This is a great info but i am having issues in generating the session id kindly suggest a work around in this scenario.
i need my application to post aytomatically to one of my fanpages from the appname or fanpage name, but not from my account , how can i do this?
@Noha Use the Target id parameter, u will get it. See is this example http://blog.theunical.com/facebook-integration/simple-steps-to-publish-on-facebook-fan-page-using-php/
Thanks steven, but i manage to publish on the page wall, but its always from me not from the app.
I’m using c # so i can’t map that php code to c# , but m using facebookApp instance .post(pageid/feed)
And i don’t know this belong to what api, as i got lost w fb :), but i know it’s worked very well w me when publishing from the app on friends walls using the offline access token but i cant get it to post from the APP to the Page 🙁
Error : The type or namespace name ‘API’ does not exist in the namespace ‘Facebook’ (are you missing an assembly reference?)
Sir i m getting this error, done all the hard work but got stuck here, Please help me out
Sir i m getting this error, done all the hard work but got stuck here, Please help me out, its great for me thanks to share its great sir
Thanks for this wonderfull post, it helped me a lot.
thanks it is a good post
can anyone tell me to where to put this one-time code in my asp.net project for developing fb application for get user notications..
Thanks in advance ..help me
hi ,what is OAUTH and What is the use of oauth,
How can I use OAUTH in ASP.NET pls Tell me One simple EXAMPLE,
pls HElp me
send Source code my mailId:
mandla.anilbabu@gmail.com