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.
$status = $_SESSION['fbglobalconn']->api('/'.$user.'/feed','post',$attachment);

Error 210 OAuth Exception User Not Visible

This line of code works for some profiles in posting but others it wont and stops the loop. Any reasons for the error? Any particular work around so the loop wont just stop but still will continue?

Also is there a way for me to say find out who these supposed users who are not visible? Sorry one more question, how do I get a return http code if the api worked?

share|improve this question

1 Answer

up vote 1 down vote accepted

Any reasons for the error?

The user does not allow posts on his wall to be made by you.

Any particular work around so the loop wont just stop but still will continue?

Catch the exception. That’s what they’re for.

share|improve this answer
Used a try catch combined with facebook error reporting code, fixed the problem appreciate the tips. – jacobronniegeorge Jul 16 '12 at 17:54

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.