Igor
Igor

Reputation: 21

android app cannot connect to twitter

My android application uses jtwitter and doesn't see api.twitter.com host

    Twitter twitter = new Twitter("user", "pass");
    System.out.println(twitter.getStatus("somebody"));
    twitter.setStatus("my stat");

But java desktop application works pretty good. What is the problem can be with android? I added even uses-permission INTERNET

Upvotes: 1

Views: 1571

Answers (1)

Jorgesys
Jorgesys

Reputation: 126523

Igor read this :: Twitter finally deciding to deprecate the existing Basic Authentication by June 2010

now you must use Twitter OAuth for Android

this is a very good and useful example:: How to use SignPost and Twitter4J with OAuth

Jorgesys

Upvotes: 1

Related Questions