Skip to content

Instantly share code, notes, and snippets.

View noman-iqbal's full-sized avatar

Noman iqbal noman-iqbal

  • purelogics
  • lahore pakistan
View GitHub Profile
@noman-iqbal
noman-iqbal / cdTwitter
Last active August 29, 2015 14:05
Angular Twitter With codebird with oauth
main_module
.factory('twitter', function (env, $localStorage, $log, $q,$rootScope) {
$log.log(env);
var url_q = $q.defer();
var cb = new Codebird, auth_url;
cb.setConsumerKey(env.twitter.consumerKey, env.twitter.consumerSecret);
if ($localStorage.twitter_tokken && $localStorage.twitter_tokken_secret) {
cb.setToken($localStorage.twitter_tokken, $localStorage.twitter_tokken_secret);
}
cb.__call(