Facebook Fanpage Wallposting from C# App
Posted
by brinthhillerup
on Stack Overflow
See other posts from Stack Overflow
or by brinthhillerup
Published on 2010-03-22T12:43:40Z
Indexed on
2010/06/17
0:32 UTC
Read the original article
Hit count: 531
Hello Guys
I have the following challenge at hand:
I have a fanpage for a apartment renting company. They would like to autoupdate their fanpage everytime a new apartment is added to the system.
The system is developed in C# ASP.NET 3.5.
I have downloaded the Facebook C# API From codeplex.
Have anyone done this, or know how to do it?
UPDATE:
So far I have tried the following:
FacebookSession session = new Facebook.Session.ConnectSession(myKey,mySecretKey);
Stream stream = new Stream(session);
stream.Publish("Testing", null, null, null, 107010519323711);
I get a null reference Exception when I call Stream.Publish
© Stack Overflow or respective owner