I have the following task:
I have a fan page for an apartment rental company. They would like to automate their fan page every time a new apartment is added to the system.
The system is developed in C # ASP.NET 3.5.
I downloaded the C # Facebook API from codeplex.
Has anyone done this or knows how to do this?
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 Exception link when calling Stream.Publish
source
share