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'm making an iOS application for an online radio and I want the users to be able to post messages on the radio's Facebook Fan Page which, by the way, has all the permissions set to allow everyone to post on it's wall.

I know that users can post on the fan page no matter if they "liked" or not the fan page if they are on the fan page. However, at least with the Facebook's iOS and Javascript SDKs, the feed dialog would display the following error if the user hasn't liked the page:

An invalid target was specified: 219909461711. The target must be a page, event or user that the actor can post on the wall of.

"219909461711" would be the ID number of the target profile, which is the Radio's Facebook Fan Page. If you use the Fan Page's path name, the SDK changes it for the Fan Page's profile ID number.

Am I doing something wrong? Why is it that the dialog displays this error if the user is being noticed that the message will be posted on a Fan Page?

share|improve this question
Any solution to this? I'm encountering the same problem – Timmy O'Mahony Mar 27 '12 at 20:11
Could you provide some of your code? – Somnath Muluk Mar 29 '12 at 5:42
Almost one year later, but here's the source code. Not sure if the latest changes on the API will prevent it from working. convoymobile.com/devservers/facebook-code/sourcecode.zip – Tato Barilatti Feb 13 at 16:22

2 Answers

It appears this is a known issue, see https://developers.facebook.com/bugs/379697955378489, you should subscribe to the bug to track its progress.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:48
1  
I reported the bug con Facebook Developers and posted this question here the next day hoping to have an answer from the community. Unfortunately, Facebook gave a final answer to the bug but seems not to make sense at all. I'll come back as soon as I find out if the latest changes on the API fixed the issue. – Tato Barilatti Feb 13 at 16:19

I don;t know for iOS, but at least for web, you can use the graph api to post to a fan page, and that does not require for the user to have liked the page. Posting to a page via the graph api is still available after the fb changes on February 7th (I've just tried)

share|improve this answer

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.