println("Sending Code...."); try { Status st = twitter.updateStatus(msg); println("Successfully updated the status to [" + st.getText() + "]."); } catch (TwitterException e) { println(e.getStatusCode()); } }
} }
there's my code above which accesses my twitter account and post a message.. i can send a message to my twitter. however, when i already send one message to twitter, the next time i send again, i get 403. so i need to stop Processing and run it again to send another post. that is very inconvenient don't you think? so i would really appreciate if you help me find out and solve the the problem that's making 403.... please.....
this is a code for processing to detect if a certain pin in arduino is HIGH, if its high, it will post a message in twitter. but i want to insert the current time into the message to be posted in order to make each post unique. anybody knows how to do that?? please help me.