Android 将不可更改的文本发布到twitter

Android 将不可更改的文本发布到twitter,android,twitter,Android,Twitter,我正在尝试分享一些文字和twitter的链接 String tweetUrl = "https://twitter.com/intent/tweet?text="+ getString(R.string.twittermessage)+" "+highscore +". "+ getString(R.string.getandroidversionhere)+" " +"&url=" + "https://play.google.com/store

我正在尝试分享一些文字和twitter的链接

String tweetUrl = "https://twitter.com/intent/tweet?text="+ getString(R.string.twittermessage)+" "+highscore +". "+ getString(R.string.getandroidversionhere)+" " +"&url="
                    + "https://play.google.com/store/apps/details?id=com.nordquistproductions.robberducky&hashtags=quackyquack";
                Uri uri = Uri.parse(tweetUrl);
                startActivity(new Intent(Intent.ACTION_VIEW, uri));
这很好,问题是我试图发布一个高分。一旦twitter应用程序提示用户发布推文,用户可以更改其高分


是否可以在twitter应用程序中添加不可更改的文本?

如果我没记错的话,使用调用系统twitter应用程序的意图是不可能的

也许你可以直接在推特上发这条消息?应该可以使用REST API和POST STATUS/update函数[1]。为此,需要进行身份验证——应该使用OAuth。[2] 用户可以授予你的应用发推的权限,这样用户就不能再改变高分了

[1]


[2]

谢谢,我会尽量这样设置。