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
0
votes
1 answer

Items in NSDictionary returns NULL

I'm using MGTWitterEngine and I cannot figure out why my dictionary items are returning null. I have this method: - (void)searchResultsReceived:(NSArray *)searchResults forRequest:(NSString *)connectionIdentifier{ NSDictionary *result =…
Ngoan Nguyen
  • 747
  • 2
  • 9
  • 19
0
votes
1 answer

MGTwitterEngine (iPhone) won't send update to Twitter

I cant send status update on twitter. Here is my code.. - (void) tweet{ _engine = [[SA_OAuthTwitterEngine alloc] initOAuthWithDelegate:self]; _engine.consumerKey = @"someKey"; _engine.consumerSecret = @"someSecret"; UIViewController *controller =…
sicKo
  • 1,241
  • 1
  • 12
  • 35
0
votes
1 answer

MGTwitterEngine "default" tweet count?

Here is my issue! I am using MGTwitter Engine and have just about everything working from tweets to screen_names re-tweet count and avatars all placed in the table view. What I do not understand is if I add any type of known "count" it will crash on…
FreeAppl3
  • 858
  • 1
  • 15
  • 32
0
votes
1 answer

How to fix xAuth problems with MgTwitter in a Cocoa app?

I am developing a Twitter client for Mac OSX and I am using MgTwitter framework. I use xAuth login method and it works fine but I can't get tweets from my timeline. Here is the error message in the console: +[OARequestParameter…
Tyflos
  • 1
  • 2
0
votes
1 answer

MGTwitterEngine: GetBulkUserInformationFor:

I'm using MGTwitterEngine to grab profiles from an NSString but I only get the first response in the list. Changing the method in MGTwitterEngine.m to use screen_name instead of user_id gives me a 404 error, using user_id works, but it only returns…
Ngoan Nguyen
  • 747
  • 2
  • 9
  • 19
0
votes
1 answer

MGTwitterEngine: Which user is logged in?

I'd like to know how can I know which user is logged in at the moment? I'm using xAuth, and I'm not using the SAOAuthTwitterEngine, so I'm limited to the MGTwitterEngine methods.
mobileapps
  • 21
  • 4
0
votes
1 answer

MGTwitterEngine and its Supported Arrays

This is my first time posting. I have been afraid to post anything since I am a noob with C++ but I do have to say I seem to be catching on fairly quick since I am an experienced html, css, javascript developer. Ok so I am working on this project…
FreeAppl3
  • 858
  • 1
  • 15
  • 32
0
votes
1 answer

crash with OAuthTwitterController delegate

I get a EXC_BAD_ACCESS when this delegate function is called : OAuthTwitterController: (SA_OAuthTwitterController *) controller authenticatedWithUsername any ideas ? my class looks like this : @interface QuizzResultController: UIViewController…
Nico AD
  • 1,657
  • 4
  • 31
  • 51
0
votes
3 answers

IOS : Errors while compiling projet with MGTwitterEngine

i m getting this error on some machines while compiling my project: Undefined symbols for architecture armv6: "_xmlFree", referenced from: -[MGTwitterLibXMLParser initWithXML:delegate:connectionIdentifier:requestType:responseType:URL:] in…
Nico AD
  • 1,657
  • 4
  • 31
  • 51
0
votes
1 answer

Using MGTwitterEngine Singleton

I read about Change the delegate of MGTwitterEngine and don't really get it. I hope someone can explain it again. Based on what I know, I create a wrapper for MGTwitterEngine and setup the delegate within the wrapper. So in order to make easier, I…
sayzlim
  • 275
  • 1
  • 2
  • 16
0
votes
1 answer

Using retweeted_by API with MGTwitterEngine - keeps on returning error 404

I'm trying to add a method to MGTwitterEngine to use twitter's retweeted_by API ( http://dev.twitter.com/doc/get/statuses/:id/retweeted_by ). Here is what I've added to MGTwitterEngine.m (all the OAuth stuff is done, the other methods inside the…
Craig
  • 863
  • 7
  • 7
0
votes
1 answer

how to get replies and retweets in twitter in iphone

how to get the replies and retweets from twitter using sa oauth engine.i mean which twitterengine delegate method is used to get these.i use this for tweets - (void)statusesReceived:(NSArray *)statuses forRequest:(NSString…
sujith1406
  • 2,822
  • 6
  • 40
  • 60
0
votes
1 answer

How to integrate MBProgressHUD with MGTwitterEngine

I've got both working great individually, but when I try to combine them like this: - (IBAction)showWithLabel:(id)sender { HUD = [MBProgressHUD showHUDAddedTo:self.navigationController.view animated:YES]; [self.checkinsViewController.view…
jpsim
  • 14,329
  • 6
  • 51
  • 68
0
votes
2 answers

Can't parse JSON sent by SA_OAuthTwitterEngine/MGTwitterEngine

I'm developing an Twitter app, but in the view where's supposed to be the logged user info, I'm not able to parse the JSON gave by [_engine getUserInformationFor:username];. I'm using SBJSON and tells me this when tries to parse it: 2011-05-07…
pmerino
  • 5,900
  • 11
  • 57
  • 76
0
votes
2 answers

Objective C twitter client help!

I'm trying to update my app (iSocialNet) to use the latest version of MGTwitterEngine without success. I've successfully got iSocialNet to work using Ben Gottlieb's Twitter+OAuth, but there are issues that come with it. What I would like to do is…
d4ndym1k3
  • 119
  • 2
  • 16