1

I'm new to this twitter integration and I've tried twitter integration in two different ways one with social auth and other with twitter core 4j

Social auth works fine with TAB 2 but doesn't work at all for N8000 and twitter core 4j gives error in getting access token and the example here takes me to a webView saying error accessing ouath.

Could someOne help me in giving the best example for twitter integration which works fine and other devices

Note : I've followed every step to generate consumer key and other keys


static String TWITTER_CONSUMER_KEY = "nAIxYApY73kBKXPVDuM0A"; 
static String TWITTER_CONSUMER_SECRET = "lB3OCl9E0uJR4yoWBugZGrsHJ9HfKWCTv9ZAzJFsjc"; 
static String PREFERENCE_NAME = "twitter_oauth";
static final String PREF_KEY_OAUTH_TOKEN = "oauth_token";
static final String PREF_KEY_OAUTH_SECRET = "oauth_token_secret";
static final String PREF_KEY_TWITTER_LOGIN = "isTwitterLogedIn";
static final String TWITTER_CALLBACK_URL = "oauth://t4jsample";
static final String URL_TWITTER_AUTH = "auth_url";
static final String URL_TWITTER_OAUTH_VERIFIER = "oauth_verifier";
static final String URL_TWITTER_OAUTH_TOKEN = "oauth_token";
Ry-
  • 218,210
  • 55
  • 464
  • 476
Hummer
  • 811
  • 1
  • 6
  • 14
  • http://www.files.com/shared/51c2881be8c25/TwiiterAPINewAPI.zip try this example – Aamirkhan Dec 05 '13 at 06:11
  • this gives me a force close as soon as i click login in N8000 – Hummer Dec 05 '13 at 06:16
  • yes first you have to put your consumer key and consumer secret – Aamirkhan Dec 05 '13 at 06:18
  • on `TwitterHomeActivity` class put your consumer key and secret key here static String TWITTER_CONSUMER_KEY = "PUT YOUR TWITTER_CONSUMER_KEY HERE"; static String TWITTER_CONSUMER_SECRET = "PUT YOUR TWITTER_CONSUMER_SECRET HERE"; – Aamirkhan Dec 05 '13 at 06:20
  • if you don't know how to get consumer key and secret key than look at twitter official site https://dev.twitter.com/discussions/2530 – Aamirkhan Dec 05 '13 at 06:21
  • Please could u see the answer below and say what are the other changes I have to do – Hummer Dec 05 '13 at 06:23
  • 2
    Are you sure you want to publish your consumer secret…? – Ry- Dec 06 '13 at 03:14

0 Answers0