可以使用手机中安装的官方应用对Twitter帐户进行身份验证吗?

时间:2016-06-22 11:18:51

标签: android twitter

我尝试过twitter4j和其他库。它们需要一串密钥才能进行身份验证。

iOs示例Twitter API application only mode authentication

我可以分享以下帖子代码:

String tweetUrl = String.format("https://twitter.com/intent/tweet?text=%s&url=%s",
urlEncode("Tweet text"),
urlEncode("https://www.google.fi/"));
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(tweetUrl));

//Narrow down to official Twitter app, if available:
            List<ResolveInfo> matches = getPackageManager().queryIntentActivities(intent, 0);
            for (ResolveInfo info : matches) {
                if (info.activityInfo.packageName.toLowerCase().startsWith("com.twitter")) {
                    intent.setPackage(info.activityInfo.packageName);
                }
            }

startActivity(intent);

我想要什么

我想在不使用库和那些键的情况下获得关注者列表。有办法吗?

0 个答案:

没有答案