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
1
vote
1 answer

MGTwitterEngine for iOS : how to get accessToken? Error 401

I'm using MGTwitterEngine library for my iOS app to post tweets. NSString *username = dataBase.twiLog; NSString *password = dataBase.twiPas; NSString *consumerKey = cons_key; NSString *consumerSecret = cons_secret; // Most API…
Ilya Blokh
  • 11,923
  • 11
  • 52
  • 84
1
vote
1 answer

Tweeting from Cocoa app

I need to integrate Twitter into my Cocoa application. I tried MGTwitterEngine class: https://github.com/mattgemmell/MGTwitterEngine/ However I got several errors when I attached files to my project: yajl_parse.h, OAToken.h and CJSONDeserializer.h…
Ilya Blokh
  • 11,923
  • 11
  • 52
  • 84
1
vote
2 answers

Incompatible pointer types assigning to NSObject *__weak from NSObject

"Incompatible pointer types assigning to NSObject *__weak from NSObject" When using MGTwitterEngine I get this error. If I turn off "treat warnings as errors" it seems to skip over. Why is this happening? __weak NSObject…
quantumpotato
  • 9,637
  • 14
  • 70
  • 146
1
vote
2 answers

Uploading image on twitter using twitpic

I want to upload image on twitter.For this I used Twitpic API .I am able to upload image using oauth in which i need to enter pin manually .Please anyone suggest me how to upload image via twitpic from mgtwitter engine so that I do not have to …
Gypsa
  • 11,230
  • 6
  • 44
  • 82
1
vote
1 answer

MGTwitter Engine on xCode4 with iOS5 - Semantic Issues

My App is in the App Store and working fine. I now want to migrate it from xCode3 to xCode4 and iOS5. I've resolved the majority of the issues, but am stuck with some warnings I'm getting (see below) relating to Matt Gemmell's excellent…
Chris
  • 1,449
  • 1
  • 18
  • 39
1
vote
2 answers

Requesting xAuth permission from Twitter API Policy

Twitter API Policy team requires iOS app developer to apply for permission to use xAuth. They suggest me to use oAuth first, but as I'm using MGTwitterEngine, I am unable to use oAuth as communication, except when I use my consumer key & consumer…
Raptor
  • 53,206
  • 45
  • 230
  • 366
1
vote
0 answers

Strange Problem with MGTwitterEngine for ipad

I am stuck with the strange problem of MGTwitterEngine for iPad because when I use it for iPhone it works perfectly but when I use it for iPad then in method below(delegate method) I am getting username as null but in iPhone it was giving…
Gypsa
  • 11,230
  • 6
  • 44
  • 82
1
vote
0 answers

MGTwitterEngine Not Working on iPad

Hello how to use MGTwitterEngine on iPad... i have add this code on viewDidLoad but presentModelViewController is not call i have debug the code... please let me know what i do wrong: - (void)viewDidLoad { [super viewDidLoad]; if(_engine)…
Appz Venture
  • 939
  • 1
  • 13
  • 28
1
vote
1 answer

How can I get the email id list using Twitter Integration in the iPhone SDK?

How can I get the Twitter email id list in the iPhone sdk? I'm using MGTwitterEngine and when I try the following method: NSString *str2 = [_engine getUserInformationForEmail:@"yw8181@gmail.com"]; NSLog(@"User Email Id:--->%@",str2);; so its…
Nikunj Jadav
  • 3,417
  • 7
  • 38
  • 54
1
vote
2 answers

MGTwitterEngine is not returning re-tweets, only “original” tweets

I’m a newbie to iPhone app development and trying to create a Twitter-based iPhone app. I’m using MGTwitterEngine to search and retrieve the timeline of people I follow. The method I’m using is: [twitterEngine getFollowedTimelineSinceID:0…
user898836
  • 45
  • 1
  • 1
  • 6
1
vote
0 answers

How to remove request url error from twitter apis in iphone

I am integrating twitter api in my application. When I am trying to tweet I am getting an error: Request A2C3E4D7-D3E8-47AD-A47C-3AC0DF2975A7 failed with error: Error Domain=HTTP Code=401 The operation couldn’t be completed. (HTTP error 401.) I…
Ajay_Kumar
  • 1,381
  • 10
  • 34
  • 62
1
vote
1 answer

MGtwitter Login Error

Hi I am using MGtwitter with Oauth . First time it shows login popup. But when I am trying to login it is giving following exception -[OAToken setPin:]: unrecognized selector sent to instance 0x685a580 2011-05-13 11:17:03.177 Twit[3491:207] *…
iProgrammer
  • 3,099
  • 3
  • 33
  • 59
1
vote
2 answers

Mgtwitter engine Login And logOut

Hello I am using MGTwitterEngine to create twitter app.I created different views for followers list, user time line and so on... Once I login It will save user credentials with following code - (void) storeCachedTwitterOAuthData: (NSString *) data…
iProgrammer
  • 3,099
  • 3
  • 33
  • 59
1
vote
1 answer

Not getting a delegation callback from MGTwitterEngine

I am trying to get the sentDirectMessages of a twitter user via MGTwitterEngine. However, I am not receiving an MGTwitterEngine delegation method callback from the engine to say its received data. I put an NSLog to see if the connectionFinished…
max_
  • 24,076
  • 39
  • 122
  • 211
1
vote
2 answers

How to get 10 latest tweets from a user as strings?

I'm making an app and I only need Twitter integration to get the latest tweets from a user and display them in a TableView. I tried using MGTwitterEngine but I get lots of errors. I'm guessing it wasn't made for iOS. While we're at it, does anyone…
Jehanlos
  • 77
  • 1
  • 8