ng-twitter icon indicating copy to clipboard operation
ng-twitter copied to clipboard

AngularJS library for the Twitter REST Api

Results 5 ng-twitter issues
Sort by recently updated
recently updated
newest added

Looks like ngTwitter doesnot support media upload. Also the post calls are appended with get parameters which is not correct - https://github.com/saimon24/ng-twitter/blob/f2a5c90135d5412dd3d0ca55e5f1f903f0658fb9/dist/ng-twitter-api.js#L44-L46

``` $cordovaOauth.twitter(clientId, clientSecret).then(function (succ) { $twitterApi.configure(clientId, clientSecret, succ); }, function(error) { console.log(error); }); ``` I saw this syntax to pass clientId and clientSecret id for ionic framework.How can i pass...

I have set up my proxy as such: ``` "proxies": [ { "path": "/api", "proxyUrl": "https://api.twitter.com/1.1/search/tweets.json" } ``` I have also edited the search URL to match the proxy: `var...

I saw the other issue that was closed about the CORS header but I simply cannot seem to get this to work. I'm using the consumer key / secret and...

Hello, I'm trying to make a search query to Twitter Rest API. Whereas getting data via `getHomeTimeline()` works, getting some via `searchTweets()` doesn't. ``` angular.module('app') .controller('TwitterCtrl', function($scope, $ionicPlatform, $twitterApi, $cordovaOauth){...