I am able to post on my page like bellow
client.Post( "postId"/feeds", messagePost);
But now I want to schedule post the same page.
I tried to find on web but dident got any solution.
I am able to post on my page like bellow
client.Post( "postId"/feeds", messagePost);
But now I want to schedule post the same page.
I tried to find on web but dident got any solution.
 
    
    This is how you should do it:
   client.Post("postId/feeds", new
        {
            access_token = "Your access token",
            scheduled_publish_time = "Time as unix timestamp",
            message = "Your message",
            published = "0"
        });
I have never used the Facebook SDK before, but these links where very helpful:
Facebook Error 100: You cannot specify a scheduled publish time on a published post
Posts scheduled via Graph API frequently do not get published
 
    
    