twittear - Compartir texto/imagen en twitter y facebook en android
subir varias fotos a twitter android (2)
He desarrollado mi aplicación de noticias y ahora tengo que agregar la opción de compartir (Facebook / Twitter) para compartir imágenes y texto. He buscado mucho pero no estoy claro cómo cumplir con mis requisitos. En realidad, en el botón Compartir, tengo que mostrar el texto y el botón editar y lo que tenemos que compartir al hacer clic en el botón compartir que se debe compartir. He pasado por el SDK y la intención también, pero no funciona para mi requisito ".
String twitterUri = "http://m.twitter.com/?status=";
String marketUri = "TESTING ";
Intent shareOnTwitterIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse(twitterUri + marketUri));
startActivity(shareOnTwitterIntent);.
Puede compartir imágenes y pruebas en twitter utilizando la biblioteca twitter4j-core-3.0.2.jar twitter4j-media-support-3.0.2.jar. ejemplo
String token = prefs.getString(OAuth.OAUTH_TOKEN, "");
String secret = prefs.getString(OAuth.OAUTH_TOKEN_SECRET, "");
AccessToken a = new AccessToken(token, secret);
Twitter twitter = new TwitterFactory().getInstance();
twitter.setOAuthConsumer(Constants.CONSUMER_KEY, Constants.CONSUMER_SECRET);
twitter.setOAuthAccessToken(a);
ConfigurationBuilder cb = new ConfigurationBuilder();
cb.setDebugEnabled(true).setOAuthConsumerKey(yourConsumerKey).setOAuthConsumerSecret(yourConsumerSeceret).setOAuthAccessToken(yourAccessToken).setOAuthAccessTokenSecret(yourAccessTokenSeceret);
Configuration conf = cb.build();
ImageUploadFactory factory = new ImageUploadFactory(conf);
ImageUpload upload = factory.getInstance();
String url = upload.upload(yourImage, yourCaptionWithImage); //image is a File Format and Caption is String
Link de referencia :
1) http://www.londatiga.net/it/how-to-send-image-to-twitpic-from-android/
2) http://www.rqna.net/qna/wupzh-android-image-sharing-on-twitter-using-sdk.html
Oye, puedes obtener ayuda del siguiente enlace para cargar imágenes de Facebook
Android Facebook SDK, cargue imágenes en la pared con un perfil en otro idioma.
y para Twitter necesitas subirlo en twitpic ... para eso tienes que usar el archivo jar ... ya que no puedes twittear foto en twitter.