Hi, I hope I don´t annoy you and you don´t have to answer this, but here is a little bit more explanation of my problem. I got all of the ids of the tweets with a NSArray. Then I set a NSNumber with:
NSNumber =[NSArray objectAtIndex:indexPath.row];
to get the right id of the tweet in the TableView row. Now I just wrote this:
unsigned long fooo = NSNumber;
NSLog("%@", fooo) // The right number
[twitterEngine deleteUpdate:fooo];
But the finalURL has a other number. So for example fooo is: 8043688359
, the finalUrl is this:
finalURL = https://twitter.com/statuses/destroy/62024352.xml
Also I get the HTTP error 403
All other methods like sendUpdate, getTimeline etc. are working. Just the deleteUpdate and the sendUpdate: inReplyTo aren´t working. I think it has something with a wrong number to do. Sorry for my bad English, bad I´m a young student from Germany and I´m just learning Objective-C (or programming generally) for three weeks.
The original methodes looking like that:
- (NSString *)sendUpdate:(NSString *)status inReplyTo:(unsigned long)updateID; // statuses/update
- (NSString *)deleteUpdate:(unsigned long)updateID; // statuses/destroy
Thanks!