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.

The question is: how to add news via FBConnect??

I have the following code:

NSString *newsBody = @"[{\"message\": \"News message\" }]";
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:newsBody forKey:@"news"];
[[FBRequest requestWithDelegate:self] call:@"facebook.dashboard.addnews" params:params dataParam:nil];

After I sent the request I received the success responce. But I can't see the new news in the facebook account!!

Also, I tried to add full info into news parameter (http://wiki.developers.facebook.com/index.php/Dashboard.addNews)::

NSString *newsBody = @"[{\"message\": \"News message\",\"action_link\": {\"text\": \"link text\",
\"href\": \"http: //google.com\"} }]";

But this request returns error :(

Thanks in advance!

share|improve this question
First I thought that it's permission issue. But regarding the permission list (wiki.developers.facebook.com/index.php/Extended_permissions) I don't need any permissions to add news. Anybody????!!!!! – Dmitry Apr 21 '10 at 11:04
I think I found the reason. FB developers forgot to add "uid" parameter to the FB request. But after I added it the news is still do not shows up in the dashboard. WHAT A HELL!!! It's so trivial task!!! ANYBODY???!! – Dmitry Apr 23 '10 at 16:56

1 Answer

up vote 0 down vote accepted

I found the answer. The FBStreamDialog should be used to publish the news. It means that the custom interface cannot be used for this purposes. :( Also, just wanted to say that FBConnect it's a one big mess!! Currently fighting with the bug when after clicking Cancel button in the FB dialog the dialog firing the event dialogDidSucceed but not dialogDidCancel. Such a big mess!!!

share|improve this answer
I'm fighting for damn shit dialogDidCancel bug too. – Eonil May 16 '10 at 16:34

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.