Questions tagged [twitterkit]

Twitter Kit is a set of SDKs for iOS and Android SDK for displaying Tweets, authorizing Twitter users, and working with the Twitter API.

Twitter Kit is a set of SDKs for iOS and Android for displaying Tweets, authorizing Twitter users, and working with the Twitter API.

108 questions
39
votes
1 answer

How to proceed with Twitter dropping support for the Twitter SDK?

Since Twitter announced that they will be discontinuing support for the Twitter SDK for iOS, Android and Unity (https://blog.twitter.com/developer/en_us/topics/tools/2018/discontinuing-support-for-twitter-kit-sdk.html), I am unsure of the best way…
JaseTheAce
  • 524
  • 5
  • 13
14
votes
1 answer

Twitter logInWithCompletion or logInWithViewController not doing anything

I am trying to login to user's Twitter account. I have followed the guide at https://dev.twitter.com/twitterkit/ios/installation to integrate Twitter. However, when I try to login, nothing happens: [[Twitter sharedInstance]…
Can Poyrazoğlu
  • 33,241
  • 48
  • 191
  • 389
9
votes
3 answers

I am getting error that #import not found in xcode

I installed these pod files. pod 'TwitterKit' pod 'TwitterCore' When I try to import file i. e #import < TwitterKit/TwitterKit.h > it is showing not found error. Why it is comming any idea ? anything going wrong or anything is pending to add ?
Nikita Patil
  • 674
  • 1
  • 7
  • 17
8
votes
4 answers

Integrating Twitter Api on ANDROID (using native api from twitter)

Recently the Twitter kit is going to lose the support and I'm wondering what's is the right and recomended way to integrate to show feed tweets from search (using the api native or some new alternative to twitter kit) now and futter. The most…
exequielc
  • 681
  • 1
  • 11
  • 32
8
votes
2 answers

Not able to send a Tweet with TwitterKit on iOS 11

I am trying to use the TwitterKit to compose a tweet, via the TWTRComposer class provided. This is the function I call: -(void) tweet:(UIViewController *) root { TWTRComposer *composer = [[TWTRComposer alloc] init]; [composer setText:@"just…
Miki P
  • 652
  • 1
  • 9
  • 22
7
votes
4 answers

Getting errors from Twitter.sharedInstance() Swift 3 iOS 10

I am writing app with Swift 3 on iOS 10. sharedInstance() method throws errors to console when user deny permissions to account from systems or account is not configured (e.g. "Unable to authenticate using the system account"). Errors are shows on…
6
votes
3 answers

Update UITableView height when tweet loaded

I have a UITableViewCell which contains a TWTRTweetView with auto layout. I am loading a tweet like this: - (void)loadTweetWithId:(NSString *)tweetId { if (mTweetId == nil || ![mTweetId isEqualToString:tweetId]) { mTweetId = tweetId; …
Olcay Ertaş
  • 5,987
  • 8
  • 76
  • 112
5
votes
1 answer

TwitterKit Login always fails first try then succeeds second try (Swift, TwitterKit, Firebase)

I am using TwitterKit and Firebase to allow a user to login using Twitter. The first time I attempt to login with Twitter it fails with error: [TwitterCore] Cannot verify session credentials. 2018-07-11 13:57:20.999365-0400…
4
votes
0 answers

Firebase authentication using Twitter login on iOS now Twitter Kit is no longer supported

I would like to authenticate my Firebase app using Twitter logins. The Firebase documentation states to use Twitter Kit however Twitter stopped supporting Twitter Kit in 2018. What is the recommended way to integrate Twitter logins into Firebase…
Dan
  • 5,013
  • 5
  • 33
  • 59
4
votes
4 answers

iOS TWTRComposer Request failed: unauthorized (401)

With the following code and a bunch of other variations I've tried, I always get an unauthorized error. I'm using TwitterKit 3.0 using CocoaPods. I've got my plist setup, my twitter app configured, and code like this: // In…
Dave Koziol
  • 164
  • 1
  • 7
4
votes
0 answers

How do I reauthenticate my app?

So, I'm building my app using the Twitter fabric framework and I have a Twitter Login Button. I compile my app and chose to run the app on my iPhone from Xcode. it asked to allow to allow access to Twitter system accounts and I mistakenly clicked…
3
votes
1 answer

TwitterKit Login WebView not dismissing in iOS 13

I am trying to implement a Twitter login in a new app I am working on using TwitterKit. Everything is working on iOS 11 and iOS 12, but there seems to be problem with iOS 13. Here is my code in my LoginViewController override func viewDidLoad() { …
BobbyDank
  • 319
  • 1
  • 2
  • 17
3
votes
1 answer

How to share a post from my app to twitter iOS

I basically want the user to share something from my app to twitter. I was exploring the different methods possible and found SLComposeViewController but it is deprecated. Support for twitterKit has also been officially stopped by twitter. One…
3
votes
2 answers

Unable to sign in with twitterkit

I'm trying to login with twitterkit using the instructions provided in the developers portal, but to no avail. Everytime i try to do so, be it with loginWithCompletion, loginWithViewController or with TWTRLoginButton I get this error in the…
Ranbeuer
  • 167
  • 3
  • 12
3
votes
1 answer

TWTRSession issue with TwitterKit 3.3.0

let sessions = TWTRTwitter.sharedInstance().sessionStore.existingUserSessions() supposedly returns an array of TWTRSessions. However the type of the elements is untyped (Any), and casting to TWTRSession using if let authsession = any as?…
Jonny
  • 15,955
  • 18
  • 111
  • 232
1
2 3 4 5 6 7 8