Questions tagged [sttwitter]

A comprehensive Objective-C library for Twitter REST API 1.1

A comprehensive Objective-C library for Twitter REST API 1.1 https://github.com/nst/sttwitter

60 questions
1
vote
1 answer

How can I stop a stream when using STTWitter

On iOS (but I think this would be just the same on OSX) I'm using STTWitter. Among other things, I want to use it to stream the main public timeline. I've successfully used…
rhialto
  • 113
  • 3
0
votes
1 answer

How to use STTwitter for posting image on twitter after authorization?

I am using STTwitter demo app to post tweet and images to my twitter account from demo app after authorization.I am trying below : - (void)setOAuthToken:(NSString *)token oauthVerifier:(NSString *)verifier { [_twitter…
biki
  • 35
  • 4
0
votes
1 answer

Upload Multiple Photos to Twitter Using STTwitter

I know that you can put up to four images in a tweet, so I was wondering if that was possible, possibly using STTwitter I know that you can upload one image using this method in STTwitter, but as far as I know this method doesn't support multiple…
0
votes
1 answer

Access user's iOS default Twitter account iOS

I try to access my user's iOS default Twitter account. I use STTwitter library. The below code used to work fine on my device, but now it's not. The returned "oAuthToken", "oAuthTokenSecret", and "userID" are nil. but it's still working on the…
user2037296
  • 409
  • 1
  • 5
  • 13
0
votes
1 answer

Xcode - Importing STTwitter causes Apple Mach-O Linker Error

Exactly what it says on the title. I've downloaded the STTwitter API several times making sure nothing went wrong with my download. I ran my project before importing the library and it runs fine. I know there is nothing wrong with the STTwitter…
0
votes
1 answer

One time login with twitter using STTwitterAPI

How can i check user is already login with twitter or not by using its authToken and authTokenSecret? I am using this code but its return value without wait for completing the block execution. How to use semaphore or something else to wait until…
Sourabh Sharma
  • 8,222
  • 5
  • 68
  • 78
0
votes
0 answers

How To post Tweets using STTwitter in objective c?

i am used STTweeter for posting Tweets but it showing EXC_BAD_ACESS Error and showing error STTwitterTwitter ErrorDomain code 220 My code - (void)setOAuthToken:(NSString *)token oauthVerifier:(NSString *)verifier { // in case the user has…
RameshIos
  • 301
  • 1
  • 4
  • 13
0
votes
0 answers

STTwitter return nil iOS

I'm using STTwitter Library (latest version) and trying to get tweets with authenticating by oAuth and specifically using the Application Only authentication which provide the bearer token. I used the example code provided on GitHub but I do not…
0
votes
0 answers

Login by STTwitterAPI error domain

my app use login Twitter function, It worked on all device except iPhone 5. I don't know the reason so decide to post the question here. My code for login is: self.twitter = [STTwitterAPI twitterAPIWithOAuthConsumerKey:Twitter_API_KEY …
lee
  • 7,955
  • 8
  • 44
  • 60
0
votes
2 answers

Twitter API get user info

Had many same question, but I also cannot find the solution for me. I decide to post the question. My app for users login by Twitter then tried to get user info, but always get the error. I used STTwitter. Here is my code: -…
lee
  • 7,955
  • 8
  • 44
  • 60
0
votes
0 answers

Call back to the app in STTwitter Login in iOS?

I am building an iOS app and using STTwitter library for twitter login.I'm facing a problem that after successful login web view is not call back to my app. here is my code - (IBAction)tweetLogin:(id)sender { …
Neal
  • 194
  • 3
  • 15
0
votes
1 answer

STTwitter Not Returning Anything Neither Success or Error

I am having a very hard time here. There is one part in my application that STTwitter is successful and there is another part (using the same code) that does not return anything. The part that does NOT work: ` -(IBAction)followTwitter:(id)sender…
user2918201
  • 52
  • 1
  • 7
0
votes
1 answer

No access plugin was found that supports the account type com.apple.twitter. - STTwitter

I get this error from time to time and I don't understand why. No access plugin was found that supports the account type com.apple.twitter. I have included the Accounts, Twitter & Social frameworks that are required for STTwitter. For now I can…
master22
  • 37
  • 3
0
votes
1 answer

Is there a method that gets bulk tweets in sttwitter?

Is there a method that exposes https://dev.twitter.com/docs/api/1.1/get/statuses/lookup in STTwitter? I want to lookup and get the statuses for all the tweetId's in an array.
rmp2150
  • 777
  • 1
  • 11
  • 22
0
votes
1 answer

Can't access twitter profile URL - using STTwitter Wrapper

I'm using the STTwitter wrapper to connect with Twitter and I'm running AppOnly and I'm able to retrieve the tweet text with no problems. I'm using the getStatusesUserTimelineForUserID method for that. The problem is that I can't access…
master22
  • 37
  • 3