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
1
vote
1 answer

TwitterKit doesn't support iOS 8.x and lower

I am using the following cocoa pod for twitter. target 'test' do platform :ios, '12.0' use_frameworks! # Pods for test pod 'GoogleSignIn' pod 'TwitterKit' post_install do |installer| installer.aggregate_targets.each do…
Tapas Pal
  • 7,073
  • 8
  • 39
  • 86
1
vote
1 answer

ld: symbol(s) not found for architecture arm64 TwiterKit

For some reason twitterkit is in my project. I did not add it but I guess its part of another pod I have added. The issue im having is that it is giving me 43 errors. It begins: Undefined symbols for architecture arm64: …
user11214880
1
vote
1 answer

Twitter signin error in react-native-twitter-signin in iOS only

I've setup react-native-twitter-signin package as like in documentation and works perfectly on Android. But I'm getting this error on iOS. Possible Unhandled Promise Rejection (id: 1): Error: Twitter signin error. Is it due to callback issue?
1
vote
0 answers

TwitterKit dissmiss viewcontroller modally

In project I am using "TwitterKit" for twitter login. I am using below code in my project: TWTRTwitter.sharedInstance().logIn {(session, error) in if let s = session { print("logged in user with id \(session.userID)") } else { // log…
Rupshikha
  • 213
  • 1
  • 3
  • 16
1
vote
2 answers

iOS twitter login when app is not installed

In my iOS app I'm using TwitterKit The problem I have faced is that when twitter app is not installed there is no way to log in user I saw answers that suggesting adding any callback URL but that doesn't work anymore I have tried 2 things: search…
Roma
  • 1,107
  • 9
  • 19
1
vote
1 answer

Change in twitter login

As we know, there have been changes in access to the twitter API referring to callbacks URLs. So far, I have been using the identification callback with firebase, as I indicated here: This has been working perfectly so far. I read in the…
Sergio76
  • 3,835
  • 16
  • 61
  • 88
1
vote
0 answers

Not able to tweet image on twitter in Android

I'm trying to tweet an image on twitter from the SD card. Also tried to tweet from image URL, but the image not showing on composer. Below is my code: ByteArrayOutputStream bytes = new ByteArrayOutputStream(); …
Pragya Singla
  • 244
  • 3
  • 13
1
vote
0 answers

Twitter login not working with twitter app ios

I am implementing login from twitter in ios objective c. The following code working well if Twitter app not installed in device ,it redirect to safari and login successful from twitter but if twitter app installed it redirect to twitter app but…
Sunil Singh
  • 538
  • 3
  • 12
1
vote
1 answer

XCode Objective-C Apple Mach-O Linker Error

recently started to make apps with XCode. I got this error after I installed cocoapods and used pod init and install... haven't even started to write codes and it failed... Any idea what might cause it? I tried all the methods online but didn't…
J.Titor.0
  • 79
  • 12
1
vote
1 answer

Tweeting using Twitterkit fails when Twitter app is not installed in iOS 11

I am following the documentation of twitter and below is the example code they have given to check logged in user session and tweet using the TWTRComposer. // Check if current session has users logged in if ([[Twitter sharedInstance].sessionStore…
Rahul Gupta
  • 161
  • 1
  • 12
1
vote
0 answers

Unable to upload video in a Tweet with Twitter SDK 3.1.1

I’m trying to upload a video in a Tweet using REST api in my android app. When trying to initialize upload file session using INIT command, I am getting code: 215, message: Bad authentication data. But, authentication works fine, as I’m able to…
1
vote
1 answer

How to show retweets and like counts in iOS TwitterKit?

In twitterKit, there is a tweetView for displaying the Tweet from tweet model object, but there is no field for showing retweets and likes counts in the tweetView. cell.tweetView.showActionButtons = true; This allow us to show action buttons for…
Balasubramanian
  • 5,274
  • 6
  • 33
  • 62
1
vote
0 answers

Twitter Kit iOS does not authorize account

Twitter Kit iOS does not authorize account when the Twitter iOS application already exist on iPhone. I use TwitterKit and when Twitter application installed on iOS device my application’s Twitter share property opens the installed twitter…
oakt
  • 117
  • 10
1
vote
1 answer

Retreive tweet information (text&image) from timeline in TWTRTimelineViewController - Objective c

Good afternoon, I have an app that asks the user to log in thanks to twitter's doc found there: Log in with twitter. Then, I can successfully load the user's timeline. This timeline loads in a NavigationController which has the interface…
Theo
  • 33
  • 3
1
vote
1 answer

How to set an OnItemClickListener on TweetUI list from Twitter Kit with Android Studio?

I'm trying to build an app in android studio which displays a list of tweets from a user in a list view, and then the user can select one and the tweet text is carried forward to another activity. I have used the following code to set an…
J.M
  • 43
  • 8