Twidroid公开Twitter直接消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Twidroid公开Twitter直接消息相关的知识,希望对你有一定的参考价值。

  1. final Button button2 = (Button) findViewById(R.id.senddirect);
  2. button2.setOnClickListener(new View.OnClickListener() {
  3. public void onClick(View v) {
  4. Intent intent = new Intent("com.twidroid.SendDirect");
  5.  
  6. /* set recipient of direct message */
  7. intent.putExtra("com.twidroid.extra.TO",
  8. "androidev");
  9.  
  10. /* set direct message content */
  11. intent.putExtra("com.twidroid.extra.MESSAGE",
  12. "This is a test from Twidroid public intent.");
  13.  
  14. try {
  15. startActivityForResult(intent, 1);
  16. } catch (ActivityNotFoundException e) {
  17. /* Handle Exception if Twidroid is not installed */
  18. TextView text = (TextView) findViewById(R.id.message);
  19. text.setText("Twidroid Application not found.");
  20. button2.setVisibility(View.GONE);
  21. }
  22. }
  23. });

以上是关于Twidroid公开Twitter直接消息的主要内容,如果未能解决你的问题,请参考以下文章

我应该通过 Twitter 上的直接消息向用户提供丢失的凭据吗?

如何使用 Twit NPM 包获取 Twitter 用户名和头像

Twitter Bot Node.js 和 Twit 包

使用npm twit将图像上传到Twitter时“媒体类型无法识别”

通过Twit w / Node.js发布Twitter线程

流式传输 Twitter 直接消息