gpt4 book ai didi

android - Twitter 日志记录和不重定向到应用程序以及如何使用回调 URL

转载 作者:行者123 更新时间:2023-11-30 02:51:16 31 4
gpt4 key购买 nike

因为我正在尝试将 Twitter 集成到我的 Android 应用程序中。但它通过浏览器记录以及如何回调我的应用程序。它重定向到我在

中指定的回调 URL
apps.twitter.com/app/•••••••

正如我所尝试的,我的应用回调 URL 中有不同的 URL。

twitter app://connect
app://twitter

和 list 文件中的 Intent 。

最佳答案

您必须在 AndroidManifest.xml 文件中声明回调。

你的回调地址:

public static final String TWITTER_CALLBACK_URL = "x-oauthflow-twitter://twitterlogin";

你的 AndroidManifest.xml 文件:

   <activity
android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="twitterlogin"
android:scheme="x-oauthflow-twitter" />
</intent-filter>
</activity>

关于android - Twitter 日志记录和不重定向到应用程序以及如何使用回调 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24114535/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com