开发者

How to post message on twitter wall using twitter integrate android app

开发者 https://www.devze.com 2023-02-08 18:18 出处:网络
I would like to integrate Twitter into my Android applicati开发者_Python百科on so that I can post messages to Twitter.It really depends on how you want the interaction to work. You can:

I would like to integrate Twitter into my Android applicati开发者_Python百科on so that I can post messages to Twitter.


It really depends on how you want the interaction to work. You can:

  1. Use their API (helped by a library such as twitter4j, as suggested by Heiko Rupp), or
  2. Find a way to integrate with the Twitter app, although there is no published protocol for this as far as I know. This is also not a good idea because many people use other apps such as Twidroyd, TweetDeck and so on, but it would definitely be cool, or
  3. If you don't expect the user to do this very often, you can just open up http://twitter.com/?status=<what-to-tweet> using a simple intent.

Method 3 can be easily described here:

Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse("http://twitter.com/?status=" + Uri.encode(message)));
startActivity(i);

You can also combine 2 and 3. You can try a few known apps (official Twitter, TweetDeck, ...) and if all of them fail (because they're not present or because they have been updated and broke the protocol) you resort to opening up the browser.

Also note that it might be possible for method 3 to actually launch an app instead of the browser (or at least give the user a choice between the two), if the app handles the correct intents.

Another thing worth mentioning is that it's very possible that you will not be able to integrate with any Twitter apps. What I've said here is purely hypothetical, I have no idea whether these apps support such integrations. You should consult each app and see if they expose some intents that you could use. If they don't, you can still hack around a little and you might find them, but that will be unreliable because they will most probably break after a couple of updates.


You could use the twitter4j library to talk to twitter. Since Twitter has changed over to oAuth, the initial authentication is not trivial.

Basically you need to register your app with Twitter (go to your profile and then to the developer page to register your app - you will then get consumer token+secret). Then follow this example to authenticate with Twitter.

You may have a look at Zwitscher (rev 0.65, code of oAuth has not been updated for the nw internal changes after 0.65), which is an open source Twitter client for a larger example.


You may have a look at one of my examples of how to get Sign-in with twitter working on android.

It uses twitter4j, and with slight modification, you can make it post tweets too!

find it here.

UPDATE: there's one question specific to this issue: twitter,update status


I use twitter4j and oauth-signpost to create facebook like oauth authorization (webview dialog). Checkout this post


You can send the appropriate Intent to start the default twitter application


You can do this without Twitter4j, thus avoiding the massive headache of implementing the OAuth flow.

String tweetText = "We be tweetin!";
String url = "twitter://post?message=";

try {
    Intent i = new Intent(Intent.ACTION_VIEW);
    i.setData(Uri.parse(url + Uri.encode(text)));
    startActivity(i);
} catch (android.content.ActivityNotFoundException e) {
    Toast.makeText(this, "Can't send tweet!", 2).show();
}

Other supported twitter:// urls are listed here.

If the user has the Twitter App installed on their device it'll open it directly to a share view. When cancelled or shared it'll return direct to your App. Super simple. Similar to how iOS handles sharing now (with Facebook and Twitter integration).

This doesn't handle cases where the user uses another App as their primary Twitter client.

0

精彩评论

暂无评论...
验证码 换一张
取 消