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
2 answers

post image to twitter using update_with_media rest API

I am using update_with_media Rest API to post a picture to twitter. I am getting HHTP 410 error everytime when I hit the API My code snippet is : In SA_OAuthTwitterEngine.m - (NSString *) _uploadImage:(UIImage *)image…
Khushboo
  • 1,208
  • 1
  • 8
  • 19
1
vote
1 answer

How to get twitter profile pic using api 1.1 from iOS?

I am using MGTwitterEngine lib to authenticate Twitter account, but after successful login I want to get user profile pic but not able to get it and following method is stopped…
1
vote
1 answer

Updating MGTwitterEngine to New Twitter API v1.1

I am currently updating my app to .json from xml for Twitters new API v1.1. I currently have .json working and can log on, get me timelines, mentions, but when trying to get direct messages, lists, or user info it seems its looking for "cookies" but…
FreeAppl3
  • 858
  • 1
  • 15
  • 32
1
vote
4 answers

Any Solutions for the Twitter API1.1 and OAuth for ObjectiveC?

Have an app that is built in xcode and using Objective C, I'm currently using the MGTwitterEngine + OAuthConsumer framework to send out tweets. Worked great until yesterday when they finally moved to API1.1 and enforced oauth_callback in the OAuth…
1
vote
0 answers

I can't get the value retrieved using MGTwitterEngine(iPhone) for Twitter API 1.1

I use MGTwitterEngine(iPhone). But I can't get the value retrieved using MGTwitterYAJLParser… Following is described https://dev.twitter.com/docs/api/1.1/get/search/tweets. here is my code…. MGTwitterSearchYAJLParser.m -…
tonosama
  • 29
  • 2
1
vote
0 answers

MGTwitterEngine reply to a tweet not working

I am using MGTwitterEngine using this code for reply a tweet [[twitter sendUpdate:text inReplyTo:message_ID] retain]; But it works as a normal tweet. not as a reply of any specific tweet. Any idea.
Amit Battan
  • 2,968
  • 2
  • 32
  • 68
1
vote
1 answer

How to check duplicate tweet using MGTwitterEngine

I use MGTwitterEngine in my iOS app. I use this callback for check success posted my message. - (void)requestSucceeded:(NSString *)connectionIdentifier But how can I check if I alredy have posted my tweet and I don't want to duplicate it. For…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
1
vote
2 answers

MGTwitterEngine send retweet is not working

I'm using MGTwitterEngine. I've found this post where shows a modification to the current version of MGTwitterEngine. I've applied this modification and when I'm executing the method returns this: 2012-04-10 01:04:17.908 Otsuka On[27519:707] INFO ->…
NemeSys
  • 555
  • 1
  • 10
  • 28
0
votes
1 answer

MGTwitterEngine + OAuth Load Users Tweets

I am using MGTwitterEngine + OAuth in my project. I would like to load all tweets from the currently logged in user into a NSMutableArray, however I am having difficulty doing so. Upon successful login I call the following method: [_engine…
Mick Walker
  • 3,862
  • 6
  • 47
  • 72
0
votes
1 answer

Fetch Twitter Friend List after Authentification

I've used the following method from MGTwitterEngine.m in order to fetch the friend list: (NSString *)getFriendsIds:(NSString *)twitterID { NSString *path = [NSString stringWithFormat:@"friends/ids.%@", API_FORMAT]; NSMutableDictionary…
0
votes
1 answer

MGTwitterEngine and IOS 5.0.1 Not Working, works on IOS 4.x

I have been using the MGTwitterEngine and it is working fine on IOS 4.x, but does not work on IOS 5.x I have downloaded the latest version, mattgemmell-MGTwitterEngine-e40658f, and integrated it with the same issue. I am getting the following that…
ort11
  • 3,359
  • 4
  • 36
  • 69
0
votes
2 answers

Integrate twitter to IPhone application

I am hoping to integrate Twitter to my application. My project is created with ARC support. When i added the Twitter framework i also flagged the .m files with -fno-objc-arc. I could login to twitter (meaning, the authentication process works), and…
Illep
  • 16,375
  • 46
  • 171
  • 302
0
votes
1 answer

iPhone:Twitter Integration with HTTP Code 401 error

I am using Twitter Integration using MGTwitterengine , SAOAuthTwitterengine in my app and I am successfully login in Twitter but not tweeted in Twitter its display error like Request 85ABBA42-ABF6-46A8-9E36-6AA606E23C5A failed with error: Error…
Nikunj Jadav
  • 3,417
  • 7
  • 38
  • 54
0
votes
1 answer

Social share integration with app and reporting to web service

I'm developing an app for a client, which enables social sharing of client's product via twitter and facebook. I successfully implemented sharing feature in twitter and facebook, and also I have to implemented report feature for these sharing in…
ubaltaci
  • 1,016
  • 1
  • 16
  • 27
0
votes
1 answer

Getting User Details from MGTwitterEngine

I am developing an application which has a Twitter login. I have integrated MGTwitterEngine for that, and everything is working fine. My problem is that when the user logs in, I need some details -- whatever info is returned by MGTwitterEngine for…
Gypsa
  • 11,230
  • 6
  • 44
  • 82