-1
votes
1answer
117 views

how to post image to twitter by using http://upload.twitter.com/1/statuses/update_with_media for below ios 5.0

i'm trying to share image on twitter by using new api statuses/update_with_media. Then i searched and got below code from dev.twitter.com/discussion page. Here the code is below. enter code here - ...
1
vote
0answers
124 views

Creating twitter widget for iphone/ipad apps

I have been approached to create a twitter widget for an iphone/ipad game. Initially I think the app wants to load in an iframe into the app but I would have though this was a bad way about it. The ...
0
votes
0answers
126 views

SA_OAuthTwitterEngineDelegate and SA_OAuthTwitterControllerDelegate methods are not working

In first launch of application user past Twitter OAuth authorization (in my case I use MGTwittErengine and SAOAuthTwitterEngine). My delegate methods and viewDidAppear: - ...
0
votes
1answer
194 views

SA_OAuthTwitterEngineDelegate method not called?

I am integrating twitter into my application. I m success to open twitter page, but SA_OAuthTwitterEngine Delegate method not called,below is my code. On twitter button click -(void)twitterLogin { ...
2
votes
1answer
206 views

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

how to integrate “sign in with twitter” feature with API's such as MGTwitterengine in MAC OS X with OAuth

I am new to Cocoa and wanted to develop an app which can use Sign in with twitter feature in order to authenticate user. There are API's and sample code for IOS but for Mac there are few and they are ...
0
votes
0answers
329 views

Using RestAPI calls with MGTwitterEngine+Oauth

I am using MGTwitterEngine+Oauth for twitter integration in iPhone. I need to post status and status with media on twitter.When searching I came to know that it can be possible with REST API. ...
0
votes
2answers
1k views

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 ...
2
votes
2answers
838 views

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 ...
2
votes
1answer
193 views

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 ...
1
vote
2answers
283 views

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 ...
1
vote
0answers
298 views

Twitter Followers in iPhone sdk

I am using MGTwitterEngine in iPhone sdk to call twitters followers. I am using the following method to call it. [_engine getFollowersIncludingCurrentStatus:YES]; using the following way ...
0
votes
1answer
312 views

Implementing Twitter in iPhone using OAuth?

I am trying to implement Twitter in my App using OAuth... I have all the code in my button click method... But as soon as I click on the button my app gets killed on the following line of code ...
2
votes
4answers
3k views

How to post tweet from iPhone without PIN using SA_OAuthTwitterEngine?

I am developing a iPhone application which sends tweets to twitter. For this I am using SA_OAuthTwitterEngine + MGTwitterEngine classes. I register applicaiton to www.twitter.com/apps and pass ...
0
votes
1answer
272 views

Twitter-oAuth-IPhone : Which function on Login Success : twits of followings

I am using Twitter-oAuth-IPhone https://github.com/bengottlieb/Twitter-OAuth-iPhone Login using this code if(![twitterObj isAuthorized]){ UIViewController *controller = ...
0
votes
2answers
313 views

iPhone. MGTwitterEngine. Get info for several users per 1 request

Tell me please, how to use getBulkUserInformationFor: method correctly? I have "Could not authenticate you error". When I use other methods (getUserTimelineFor: for example) all's ok. At the ...
0
votes
1answer
716 views

Retweet using Oauth+MGTwitterEngine …not getting update response

I had done retweet using the Oath Library,but there is some problem with the Twitter Database.... what the thing sucks is even after Retweet the Database ..i.e what we get in response never gets ...
1
vote
1answer
185 views

What code should I use to get & (not &) in the tweet?

I use Twitter-OAuth-iPhone to POST tweets by [_engine sendUpdate:myText];, which works fine. However, the letter & in the 'myText' will be changed to & in the tweet shown on Twitter.com. ...
0
votes
1answer
77 views

How do I Pull in errors when attempting to tweet from an iOS app using the Twitter+OAuth API?

How do I properly setup the callback method for a status update using the Twitter+OAuth API? (http://github.com/bengottlieb/Twitter-OAuth-iPhone) Right now I'm using the following to determine if a ...