Questions tagged [twitter-digits]

Digits lets people create an account or sign into your app using nothing but their phone number on iOS and Android. Built using the same global, reliable infrastructure Twitter uses, Digits will verify the user’s phone number with a simple customizable user interface that easily integrates into your app.

Digits lets people create an account or sign into your app using nothing but their phone number on iOS and Android. Built using the same global, reliable infrastructure Twitter uses, Digits will verify the user’s phone number with a simple customizable user interface that easily integrates into your app.

Digits extends your existing user/profile database. A successful Digits account creation will return a stable userID to attach or match with your user record, and an oAuth token for the device. A verified phone number is also returned for convenience, but the user’s number may change at any time and should not be used for authentication.

131 questions
0
votes
0 answers

How to display the Contacts name using Digits-FindFriends?

I am using Digits by Twitter for mobile number authentication by sending OTPs. I need to display a list of user's contacts who have registered for my app like they do in WhatsApp by their contact names. Till now after following the docs of Digits…
S.Sathya Priya
  • 470
  • 1
  • 5
  • 19
0
votes
1 answer

Twitter Digits for web - How to set default country in embeddable widget

I want to set my default country to +92 in Twitter Digits for web. This can be done on the button click event. But i don't want it on the button click. function onLoginButtonClick(event){ Digits.logIn({ phoneNumber: '+92' }) …
shah
  • 1,163
  • 2
  • 19
  • 40
0
votes
2 answers

iOS AWSCognito 2.4.X AWSIdentityProviderManager Digits Example

I was using Digits and AWSCognito 2.3.6 to authenticate my users and my code looked like this: let cognito = AWSCognitoCredentialsProvider(regionType: AWSRegionType.USWest1, identityPoolId: cognitoIdentityPoolId) let configuration =…
Caponte
  • 401
  • 1
  • 11
  • 20
0
votes
1 answer

What is a secure way to stop users having to log in with Twitter Digits every time they open my app?

I am using Twitter digits to log in/authenticate users in my Swift app. Essentially, I just want users to not have to enter their phone number and then enter the 6 digit verification code, every time they open and close my app. I can't find any…
HelloCoding
  • 119
  • 2
  • 9
0
votes
2 answers

How to programmatically segue after successful authentication?

I'm making an app using the Digits framework for users to login with their phone number. With that being said, I've tried to find a way to segue to my next view after user authentication by creating embedding a UINavigationController (into a…
user6410342
0
votes
1 answer

Oauth echo using elixir HTTPotion

Im trying to verify twitter digits api on my phoenix framework/elixir backend... when im using curl it's succeeded, but i really don't know how to generate it using HTTPotion... I tried different combination but always returns "215", "Bad…
0
votes
2 answers

Disable Back button in Digits

While doing digits programming, i am using following method : Digits.authenticate(authCallback,R.style.CustomDigitsTheme1); which directs me to digits authentication screen(without showing my xml design file). Now, when i press back button, it…
Dab
  • 61
  • 6
0
votes
1 answer

AWS Cognito not creating an authenticated user with Digits

I'm try to authenticate a user with Amazon Cognito and Twitter Digits. When I create the user, an unauthenticated user gets created that doesnt have any connection to the Digits login. Here's my code: override func viewDidLoad() { …
mlevi
  • 1,433
  • 3
  • 18
  • 30
0
votes
1 answer

IOS Twitter Digits - Change Title, Placeholders

I am trying to implement Twitter Digits for sms login in my ios demo. It is all working. But, I want to change "What is your number", "Send confirmation code", and user agreement text below because it does not automatically change those values into…
akoruk
  • 195
  • 2
  • 8
0
votes
2 answers

Android application just crashes with twitter digits and Retrofit

I am working on android application.I am using twitter digits for authentication. With the help of twitter digits app is working but whenever i am using Retrofit,the app crashes. Below is my Log cat: FATAL EXCEPTION: main …
Mohit Gaur
  • 355
  • 1
  • 3
  • 22
0
votes
1 answer

How use twitter digits api multiple times for same number?

I am developing mobile app, where user have to login by using Twitter Digits Api and my backend. So, the problem is, that I can't test it multiple times, because when I register my phone number, I can't use the same number for next time during…
Mikhail Valuyskiy
  • 1,238
  • 2
  • 16
  • 31
0
votes
1 answer

Quickblox unrecognized selector sent

I try to register in Quickblox by Twitter Digits but I always get this error +[QBRequest logInWithTwitterDigitsAuthHeaders:successBlock:errorBlock:]: unrecognized selector sent to class 0x1002c8e70 I tried many different methods but I could to…
Alexander Khitev
  • 6,417
  • 13
  • 59
  • 115
0
votes
1 answer

Digits: user presses return without entering in phone number

I'm trying to use Digits in my app and tested this out on a sample app: SCREEN 1 - MAINACTIVITY: I press the button to use my number and it goes to the following screen: SCREEN 2 - DIGITS SCREEN Now in my test scenario, the user does not enter in…
Simon
  • 19,658
  • 27
  • 149
  • 217
0
votes
1 answer

How to make multiple user mobile number authentication using OTP in iOS using Twitter Digit Framework?

Hello guys i am using i am using Objective-C, Parse and Twitters-Digits framework in my app in a users session app will allow to take 1 userid for single mobile number verification...i am saving it into Parse's current user's User Class with this…
Pravin Kamble
  • 849
  • 8
  • 12
0
votes
1 answer

Twitter Digits: How to send conformation code (sms) programmatically?

Is there a way to send sms code programmatically? (Without Digits "magic" view controllers) The example code doesn't help. // Objective-C - (void)didTapButton { Digits *digits = [Digits sharedInstance]; DGTAuthenticationConfiguration…
1 2 3
8
9