Failed to get request token on Android M running Devices

后端 未结 9 1325
误落风尘
误落风尘 2021-01-01 17:39

Twitter login failed in Android 6.0 preview devices. Its working fine on all other devices.

Below code is used to initialize fabric with twitter.

TWITTER_ K

相关标签:
9条回答
  • 2021-01-01 18:19

    Here are the things you need to do

    Twitter dev account->setting->callBack url

    and then if you are doing for the android (means login using for android devices )

    twittersdk://
    (add this in callback)

    if you are doing for the iOS (means login using for apple devices )

    twitterkit-CONSUMERKEY://
    (add this in callback)

    and hit update settings button it will work :)

    0 讨论(0)
  • 2021-01-01 18:20

    this is the best solution when twitter auth not working without app. i tried with valid firebase auth callback url but not working and i also search this problem a lot but not getting the exact solution, @Moinkhan solution worked for me and save my time, thanks to @Moinkhan, it works

    Before this solution i tried valid url and even google.com too. But for my case it was not working.

    i found below solution and it work well for me.

    Step 1: go to your twitter app setting https://apps.twitter.com/ >> Tab settings >> Fill this text "twittersdk://" to your callback url field( i found it in lib class)

    Step 2: Save your update

    Step 3: check out your app again

    0 讨论(0)
  • 2021-01-01 18:24

    After going through a lot of solutions, one that worked for me is just add - twittersdk:// as one more callback URL in the setting section of your twitter app.

    0 讨论(0)
提交回复
热议问题