Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an application in which I want to implement the twitter API and also have to load the particular URL, is it possible to load the particular URL from the API implementation? Please give me suggestion.

Thanks in advance.

share|improve this question

1 Answer

up vote 1 down vote accepted

You could use: http://twitter4j.org/en/index.html or https://github.com/sugree/twitter-android-sdk

Or something like:

HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(url);
HttpResponse response;
String output ="";
try {
  response = httpclient.execute(httpget);
  HttpEntity entity = response.getEntity();
  if (entity != null) {
    InputStream instream = entity.getContent();
    //IOUtilities is a class by romanian guy...
    output = IOUtilities.readString(instream);
    instream.close();
  }
} catch (ClientProtocolException e) {

} catch (IOException e){
  Log.e(TAG, "ERROR: Failed to open GET_REQUEST "+ e);
}
share|improve this answer
Thanks for the Response, But i have to implement the API from the scratch I haven't implement. Please provide me some tutorial to implement API for Twitter. – Amandeep singh May 26 '11 at 13:55
Thanks for this but i have already view this i had download the file which is given in this tutorial and store the jar file in my application as they mensioned in this tutorial but they cannot explain the further steps. so can you give me link of another tutorial what is tobe done with jar file after save it in my appllication. – Amandeep singh May 26 '11 at 14:09
twitter4j.org/en/code-examples.html It gives some examples here. – Nallath May 26 '11 at 14:19
please provide me the code which you send me before to call the URL. – Amandeep singh May 26 '11 at 14:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.