Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to delete the post as page. I already have access token of the admin user and access token from the page.

My Code:

var fbClient = new FacebookClient { AccessToken = getPageAccessToken() };

dynamic parameters = new ExpandoObject();

parameters.id = postId;

fbClient.Delete(m_GroupId + "/feed",parameters);

I get the following error:

 {"error":
    {
       "type":"OAuthException",
       "message":"Invalid token: \"PAGE_ID\".  An ID has already been specified."
    }
  }

I replaced the page id above with PAGE_ID

share|improve this question

2 Answers

up vote 1 down vote accepted

use the page access token and pass the post id as the path for Delete method.

var fb = new FacebookClient("pageAccessToken");
fb.Delete(postId);
share|improve this answer

I don't know the C# SDK, but from the look of it you're setting the ID twice, once with parameters.id and again with m_GroupID

share|improve this answer
yea but I thought I need the ID of the group (or page) and the id of the post I want to delete – Niyo Sep 5 '11 at 10:30
@Niyo Not really, you just need to issue a DELETE request to the post object you want to delete (cf the doc). Feels like you're jumping through hoops for a basic operation here – marcgg Sep 5 '11 at 10:31
public virtual object Delete(string path, IDictionary<string, object> parameters); – Niyo Sep 5 '11 at 10:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.