STTwitter icon indicating copy to clipboard operation
STTwitter copied to clipboard

A stable, mature and comprehensive Objective-C library for Twitter REST API 1.1

Results 24 STTwitter issues
Sort by recently updated
recently updated
newest added

``` - (IBAction)loginOnTheWebAction:(id)sender { self.twitter = [STTwitterAPI twitterAPIAppOnlyWithConsumerKey:_consumerKeyTextField.text consumerSecret:_consumerSecretTextField.text]; _loginStatusLabel.text = @"Trying to login with Safari..."; _loginStatusLabel.text = @""; [self.twitter postTokenRequest:^(NSURL *url, NSString *oauthToken) { NSLog(@"-- url: %@", url); NSLog(@"--...

So, after so many years, Twitter API 2.0 finally comes. https://twittercommunity.com/t/new-conversation-id-field-and-operator-makes-it-possible-to-easily-retrieve-complete-conversation-threads/139613 Maybe it's time we bring back life to this great project?

Twitter is turning off many legacy APIs, including: User Streams Site Streams GET direct_messages GET direct_messages/sent GET direct_messages/show POST direct_messages/destroy STTwitter should be updated to take advantage of the new...

enhancement

After updating the to the latest iOS11 recommended XCode project settings there are a number of warnings. This PR just cleans up the warnings so that the STTwitter source compiles...

Hi, thanks for the STTwitter library. I got some warnings _This block declaration is not a prototype_ for the library in a desktop project, I think it started with XCode...

When posting a status to twitter, twitter returns err: ``` Error Domain=STTwitterTwitterErrorDomain Code=44 "media_ids parameter is invalid." UserInfo={NSLocalizedDescription=media_ids parameter is invalid., NSUnderlyingError=0x60c00065e8a0 {Error Domain=STHTTPRequest Code=400 "HTTP Status 400: Bad Request"...

Hello is it possibile to use STTwitter with [Twitter Kit](https://dev.twitter.com/twitterkit/ios/) or what is the best practice one has to follow to use it on iOS 11 Since the removal of...

Hey! I did a couple of little changes on STTwitterAPI to be able to upload a video, from which I already have the NSData, directly to Twitter through STTwitter instead...