Questions tagged [mgtwitterengine]

MGTwitterEngine is an Objective-C/Cocoa class which makes it easy to add Twitter integration to your own Cocoa apps.

MGTwitterEngine is an Objective-C/Cocoa class which makes it easy to add Twitter integration to your own Cocoa apps. It communicates with Twitter via the public Twitter API. To learn more about twitter API refer this URL : Twitter API. To download the MGTwitter engine library You can see this git Source : MGTwitterEngine

170 questions
3
votes
1 answer

iPhone and Twitter API OAuth Consumer Keys and Secrets

I have a issue while loading my data from Twitter. The method I posted below works for about 5-10 minutes then it freezes up my consumer keys.... I know it is the keys because I have the app already installed on the device working then I will make…
FreeAppl3
  • 858
  • 1
  • 15
  • 32
3
votes
7 answers

logout from Twitter in iPhone using OAuth+MGTwitterEngine Library

I had made the twitter application using the OAuth and MGTwitterEngine Library. The login phase is working fine but I am facing problem in logout. I had referred all the post of logout for OAuth but it doesn't works. So can anyone suggest the…
Dishant
  • 917
  • 2
  • 8
  • 25
3
votes
1 answer

Error while posting duplicate message in Twitter(MGTwitterEngine)

I am using MGTwitterEngine for iPhone to support twitter, I am getting error(403) while posting a message second time how to handle this issue. That is.. Let the message is "what are you doing" I am posting using [mTwitterEngine sendUpdate:"what are…
Chandan Shetty SP
  • 5,087
  • 6
  • 42
  • 63
3
votes
2 answers

mgtwitterengine and oauth 401 error: Boggled

OK... so here is my code: twitterEngine = [[MGTwitterEngine alloc] initWithDelegate:self]; [twitterEngine setConsumerKey:CONSUMER_KEY secret:CONSUMER_SECRET]; accessToken = [twitterEngine…
Jason Reeves
  • 1,716
  • 1
  • 10
  • 13
3
votes
2 answers

Callback url not working while integrating Twitter with iOS

I am using mgtwitterengine to implement twitter login on my ios app. I'm having trouble logging in to my application using this library. After giving my twitter username/password, I am redirected to the landing page of my website (on Twitter…
Ninja
  • 5,082
  • 6
  • 37
  • 59
3
votes
1 answer

Twitter+oAuth engine returning 401 when trying to post status

I am using the Twitter+oAuth engine in my iPhone app, and I am able to authenticate the user perfectly. I can get statuses with no issue at all, but when I want to post a status, a 401 error is being returned. This is how I am sending a tweet:…
Prajoth
  • 900
  • 3
  • 12
  • 26
2
votes
1 answer

Twitter via Cocoa App using MGTwitterEngine: HTTP error 401

I use MGTwitterEngine library in my Cocoa application to allow sending tweets. Here's my code: NSString *username = MyName; NSString *password = MyPass; NSString *consumerKey = ConsumerKey;; NSString *consumerSecret =…
Ilya Blokh
  • 11,923
  • 11
  • 52
  • 84
2
votes
3 answers

iOS - OAuth Twitter enginer - Failing to create tokens

In my app, i am trying to integrate posting messages to twitter. (I've generated consumer key and consumer secret in my twitter applicatin. I'm using following code. #pragma mark SA_OAuthTwitterEngineDelegate - (void) storeCachedTwitterOAuthData:…
Satyam
  • 15,493
  • 31
  • 131
  • 244
2
votes
2 answers

Ben Gottlieb's Twitter+OAuth iOS SDK - username parameter returning nil

It seems that over the weekend, the following Delegate method - (void)OAuthTwitterController:(SA_OAuthTwitterController *)controller authenticatedWithUsername:(NSString *)username began returning nil for the username parameter. I wanted to see if…
ArtSabintsev
  • 5,170
  • 10
  • 41
  • 71
2
votes
0 answers

Request for member 'pin' in something is not a structure or union. MGTwitterEngine

I'm wondering why I keep getting this error. I just added Twitter+Oauth folder from Ben Gottlieb code : https://github.com/bengottlieb/Twitter-OAuth-iPhone and when I tried to build it giving me that error. SA_OAuthTwitterEngine.m - (void) setPin:…
sicKo
  • 1,241
  • 1
  • 12
  • 35
2
votes
2 answers

Twitter API for iPhone?

I want to integrate my app with twitter. I need to show tweets containing certain hashtags or from a particular user. I tried MGTwitterEngine+xOAuth, but i want twitter tweets only so no need of authentication required. MGTwitterEngine+xOAuth needs…
sarath
  • 450
  • 3
  • 15
2
votes
0 answers

MGTwitterEngine adding a method for getting friends/ids

I am having some issues adding to MGTwitterEngine. I am trying to add a call to friends/ids to return all of a users following ID's. I have a new methods as shown below, but nothing is returned. Do I have the correct requestType or responseType? -…
bmilleker
  • 83
  • 1
  • 7
2
votes
1 answer

MGTwitterEngine with update_with_media

Wondering if anyone has found a MGTwitterEngine that has implemented update_with_media? I am using it with OAuth / SAOAuthTwitterEngine Thanks
Stuart
  • 81
  • 2
  • 7
2
votes
1 answer

Twitter login screen with MGTwitterEngine

How can i use own customize page for login to twitter rather than web view present in MGTwitterEngine. I am using MGTwitter engine for this.login procees with their web view runs smoothly.
Ishu
  • 12,797
  • 5
  • 35
  • 51
2
votes
1 answer

Direct Message to more than one person : twitter MGTwitterEngine

I want to send direct message to more than one person with a single call I am using MGTwitterEngine and calling function like this [requestDict setObject:@"direct_message" forKey:[twitterObj sendDirectMessage:@"this is test from iphone app"…
Amit Battan
  • 2,968
  • 2
  • 32
  • 68
1
2
3
11 12