views:

32

answers:

1

Hi, I'm trying to call

  -(void)shareOnTwitter:(NSString *)link{
    link = [NSString stringWithFormat:@"http://m.twitter.com/?status=%@",link];
    //load webView etc

But twitter is taking me to the logon page without my link saved. Has anyone gotten this to work?

A: 

Looks like you have to login via OAuth first. Take a look at this: http://dev.twitter.com/pages/oauth_faq Maybe you want to use MGTwitterEngine

tob