where’s the 200 OK http status code you’re talking about? i cannot find it on the response (JSON) returned after i send status update using Twitter API
what i mean to achieve is that how do i know whether it’s a success response or error response
you see, i use PHP to access the Twitter API to update status to my twitter account (more like news feeds)
when i get error message there is an [“error”]
for example
array(1) {
[0]=>
array(2) {
[“error”]=>
string(22) “Status is a duplicate.”
[“request”]=>
string(21) “/statuses/update.json”
}
}
with every successful tweet using the API there’s no [“success”] tag there, so there’s hard to determine in my php code whether the tweet was success or not
i hope i’m clear, my english is just adequate 