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.

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}]} 
share|improve this question
1  
You need to authenticate: developer.apple.com/library/ios/#documentation/Twitter/… – asgoth Dec 27 '12 at 12:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.