Closed JobGetabu closed 1 year ago
@JobGetabu Are you regenerating APIKey in Twitter Developers?
Any update on above issue?
I was having the exact same issue. All I had to do was restart the android emulator and it started working.
@Appstute-Arati no.
Verification is difficult due to lack of information. If you need to investigate, please provide a sample project.
i'm facing the same issue, any updates?
I was having the same problem and I noticed that the problem was the callback url.
On Android: Make sure the callback you set in your Twitter app's settings is exactly as it is in the Android Manifest
<!-- ... -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- match "application://callback" URL -->
<data
android:host="callback"
android:scheme="application" />
<!-- ... -->
Unfortunately I can't help with iOS
After correct implementation
Worked for a while then started showing
PlatformException(400, Failed to generate request token., Please check your APIKey or APISecret., null)