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

Twitter API application only mode authentication

I've tried to integrate the STTwitter framework (Github project) for interacting with the Twitter API 1.1. After I've create an app in my dev account, I've used the OAuth credentials for application only mode authentication. Anyway, I get the…
dorin
  • 873
  • 2
  • 15
  • 34
0
votes
1 answer

Is there a way to determine if there is an active HTTP connection in STTwitter library

I would like to bind a NSProgressIndicator to HTTP activity in STTwitter library. Just wondering if there is a way to determine if a HTTP connection is currently being active?
Damien
  • 2,421
  • 22
  • 38
0
votes
2 answers

Getting profile image in iOS via STTwitter

I am using the the STTwitter API to make an App only twitter Feed. I have successfully output the tweet to the table cell, but now I'm attempting to connect user profile images and I am running in to some problems. I tried implementing the code I…
SuperAdmin
  • 538
  • 2
  • 7
  • 20
0
votes
1 answer

Parsing specified Twitter feed with JSON

I am currently making an app in which I would like to display a company twitter feed in a TableView. I have created a TableView (shown below, and I am linked it to my code. The problem I am facing now is predefining a twitter user, getting the feed,…
SuperAdmin
  • 538
  • 2
  • 7
  • 20
0
votes
0 answers

Back Slash in Nsdictionay get from twitter feeds

I'm fetching public twitter feeds from twitter its return one 24 to 26 key value dictionary against one feed for this I'm used third party library STTwitter it returns array of dictionary of twitter feeds. Problem is that in dictionary value against…
0
votes
1 answer

How to post a reply to a Twitter user using STTwitter

I'm having trouble in posting a reply to a specific status ID Here's my authentication code twitterWithReply = [STTwitterAPI twitterAPIOSWithFirstAccount]; [twitterWithReply verifyCredentialsWithSuccessBlock:^(NSString *username) { …
0
votes
1 answer

Twitter oauth/access_token 401 Error

I've been working on an all that uses the full OAuth app flow, and I have been running into an issue where I only get back a 401 = "Invalid or expired token" error. I've checked my request with the documentation, and everything looks correct, and…
miken.mkndev
  • 1,821
  • 3
  • 25
  • 39
0
votes
1 answer

Using STTwitter in lazy instantiation

I'm using the following code to set a property that holds information about twitter rate limits in a core data record: - (Limits *)limits { if (!_limits) { [[[TwitterManager sharedManager] API] getRateLimitsForResources:nil…
pedroremedios
  • 763
  • 1
  • 11
  • 39
0
votes
1 answer

Adding blocking users to a list

Example: Twitter user A is blocked from Twitter user B. If I use lists/members/create, it won't let me add user B to a list user A created. Correct. If I use lists/members/create_all with user B in the list of users , it will let me add user B to a…
pedroremedios
  • 763
  • 1
  • 11
  • 39
0
votes
1 answer

how can i get Followers list from Twitter in iphone programmatically?

here i have a piece of code (void)postToTwitter:(id)sender { if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter]) { SLComposeViewController *tweetSheet = [SLComposeViewController…
sudeveloepr
  • 183
  • 1
  • 1
  • 7
0
votes
1 answer

STTwitterAPI oauth login

I am trying to use STTwitter to post a tweet from my iOS app. However when I try to login to the API using self.twitter = [STTwitterAPI twitterAPIWithOAuthConsumerKey:_consumerKeyTextField.text consumerSecret:_consumerSecretTextField.text…
0
votes
1 answer

Using STTwitter Library how can I attach an image

I'm kind of new on objective c, and I'm trying to do a twitter client. I'm using the STTwitter API. I'm using the for tweeting the method : [twitter postStatusUpdate:twitterPostTweetText inReplyToStatusID:nil …
user2984254
  • 109
  • 1
  • 7
0
votes
0 answers

Sharing on twitter using STTwitter?

I am facing a problem in sharing of Twitter using the STTwitter API. I need to do multiple sharing on a single button click. For example, on the click of a sharing button I need to share the data on Facebook, Twitter and also on Tumblr at the same…
iApps
  • 11
  • 2
0
votes
1 answer

Twitter API - STTwitter library: Unhandled authentication challenge type - NSURLAuthenticationMethodOAuth2

The method I'm using is: [STTwitterAPIWrapper twitterAPIWithOAuthConsumerName:@"" consumerKey:@"" consumerSecret:@"" username:@"" password:@""]; When I'm using the example…
Bionicle
  • 85
  • 9
-1
votes
2 answers

Send a tweet by creating STTwitterAPI Object

I'm using STTwitter library. And I'm trying to send a tweet this way: [twitterObject postStatusUpdate:@"Testing!!" inReplyToStatusID:nil latitude:nil …
userIOS
  • 1
  • 1
1 2 3
4