I am working on an application where i am integrating twitter in my application.When i click on button the postdirectmessages api is getting which will post message to follower's wall.I am passing all the parameters properly but the api is still returning error code 503 in response.This is my code:
if ([TWTweetComposeViewController canSendTweet])
{
ACAccountStore *accountstore = [[ACAccountStore alloc] init];
ACAccountType *accountType = [accountstore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
NSArray *arrayOfAccounts = [accountstore accountsWithAccountType:accountType];
if ([arrayOfAccounts count] > 0)
{
ACAccount *acct = [arrayOfAccounts objectAtIndex:0];
NSString *profileurl = [NSString stringWithFormat:@"https://api.twitter.com/1.1/direct_messages/new.json"];
NSMutableDictionary *parameters = [[NSMutableDictionary alloc] init];
[parameters setObject:idoffriend forKey:@"screen_name"];
[parameters setObject:message forKey:@"text"];
NSURL *url = [NSURL URLWithString:profileurl];
TWRequest *request1 = [[TWRequest alloc]initWithURL:url parameters:parameters requestMethod:TWRequestMethodPOST];
__block bool islookupResponseReceived=false;
__block NSMutableArray *lookuparray;
[request1 setAccount:acct];
[request1 performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
{
islookupResponseReceived=true;
NSLog(@"Twitter response, HTTP response: %i", [urlResponse statusCode]);
}];
while (!islookupResponseReceived)
{
sleep(1);
}
}
}
Please help me in solving this problem.Why this is returning error code :
{"errors":[{"message":"Bad Authentication data","code":215}]}