Facebook error 210 “User not visible”

facebook

[php]

I've got an error "User not visible" with error code 210 as response while publishing content on friends wall via application.

:::Scenario is as follow:::

User1 authorized my application with all the required permission ( including publish_stream and offline_access ) and now I am trying to post on User1's friends wall…

At this time it gives me the error. I am using old rest API
$facebook->api_client->stream_publish($message,$attachment,$actionLink,$invV);

Help please!!!

Best Answer

Your app may not have permission to post on the given friend's wall.

When a user authorizes your app, they give you permissions to act on their behalf.

This permission does not ensure that you can always post on friends' walls, just as the user may not be able to post on the wall using the UI.

Related Topic