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.

What could be this Error?

Could not post Tweet. Error: 403 Reason: Status is a duplicate. 

actually this is a edited message . i get error code as 403 and Reason as Status is a duplicate.

share|improve this question

2 Answers

up vote 4 down vote accepted

Twitter checks messages if they are duplicates of the previous and does not accept them a second time.

So for testing you need to generate new messages (=content) each time.

This is documented somewhere at Twitter, but you can also read about on other sites.

share|improve this answer

The status is a duplicate, probably running your script twice without changing the status message.

Delete your last status update via Twitter web and run the script again. Or include date('r') or md5(mt_rand()) with your status message to generate a different one each time the script is run.

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.