Questions tagged [twitter-oauth]

Twitter implementation of oauth

Oauth - is an open protocol to allow secure API authorization in a simple and standard method from desktop and web applications.

See also:

2753 questions
14
votes
2 answers

How To Obtain All Twitter Followers Without Hitting API Limit

I imagine it's pretty easy to do, but I can't figure out what I'm doing wrong. I'm using Abraham's OAuth to gain access. I'm building a database with my follower's information: screen name, user name and twitter ID. Nothing too special. I referenced…
Kenton de Jong
  • 1,001
  • 4
  • 17
  • 37
14
votes
4 answers

Zend_Service_Twitter - Make API v1.1 ready

The Zend_Service_Twitter component is still for Twitters API v1.0 which will be deprecated at 5th March 2013. So I wanted to make my new website with Twitter API interaction v1.1 ready. Everything works fine with v1.0 but if I change the URL from…
Poru
  • 8,254
  • 22
  • 65
  • 89
13
votes
1 answer

How to solve "LibXml/xmlreader.h Not found" error in Twitter integration in iPhone

I want to integrate Twitter in my application. I integrated related files and added libxml2 library. I included the path for it in "Header Search paths" field. When i try to build my application, I am getting errors showing that…
Lakshmi
  • 585
  • 2
  • 13
  • 22
13
votes
2 answers

Get user's email from Twitter API for External Login Authentication ASP.NET MVC C#

I have checked a couple of related questions to find an answer to my question, but all to no avail. This question Can we get email ID from Twitter oauth API? got me as far as getting the Twitter support to allow the permission on my app…
Oluwafemi
  • 14,243
  • 11
  • 43
  • 59
13
votes
3 answers

Automated httr authentication with twitteR , provide response to interactive prompt in "batch" mode

I am using the R package twitteR to post items to Twitter. I put everything inside of a function and it works fine. However, I would like to run the function without being prompted for a response, and I haven't figured out how to do that. Any…
Jean V. Adams
  • 4,634
  • 2
  • 29
  • 46
13
votes
3 answers

twitter connection failed

In Android, Twitter connection failed. SSL is required? My code was working perfectly and it is currently a live application. However, since 2014 it hasn't been working and I've heard that Twitter has applied https or using SSL concept. help me to…
Bhavesh Jethani
  • 3,891
  • 4
  • 24
  • 42
13
votes
3 answers

Is there any Node.js client library to make OAuth and OAuth2 API calls to Twitter, Facebook, Google, LinkedIn, etc.?

I did a lot of googling and the best I could find was: https://github.com/ciaranj/node-oauth Are there any libraries on top of this, which provide wrappers to make API calls to Twitter, Facebook, Google, LinkedIn, etc. to say post a tweet or DM…
pavanlimo
  • 4,122
  • 3
  • 32
  • 47
13
votes
4 answers

Using the Twitter streaming API, is it possible to only display tweets from a specific user?

I am currently using the Twitter API to retrieve tweets made by certain users. For the sake of this question, we will use @justinbieber as an example. When using the https://stream.twitter.com/1.1/statuses/filter.json resource, setting follow to the…
Simon
  • 189
  • 3
  • 11
12
votes
1 answer

iOS 5 Twitter framework. Getting OAuth access token for user

Has anyone been able to get the OAuth access token for a user after being granted access to that users account? twitter mentions using a process called "Reverse Auth" in there iOS docs, but I can't seem to find any mention of it anywhere else. I'm…
nicksweet
  • 3,929
  • 1
  • 20
  • 22
12
votes
1 answer

Proxying OAuth Requests to Twitter API

I've been playing with the twitter API for an iPhone test application, and I've missed the ability to proxy the requests I did to the twitter API with a software like Charles (http://www.charlesproxy.com/). Even though it has a SSL Proxying feature,…
Javier Soto
  • 4,840
  • 4
  • 26
  • 46
12
votes
1 answer

Return recent n number of tweets using TweetSharp

I am trying to get recent 200 tweets using TweetSharp but it is returning 12 for some reason. var service = new TwitterService( _consumerKey, _consumerSecret, tokenClaim, …
Chirdeep Tomar
  • 4,281
  • 8
  • 37
  • 66
12
votes
1 answer

Best Practice Login With Facebook, Twitter, Google or register

I've managed to program a login with Facebook system in my PHP webapplication. But now I'm a bit stuck in best practices. Do I have to save the user's userID to my Database, the user's e-mail-address and/or name and surname? I'm asking this because…
12
votes
3 answers

Using OAuth for both development and production environments

I have seen other questions on SO about this (here, here, and here), but I am not satisfied with any of the solutions, so I am asking it again. I am starting a web application that will utilize OAuth from multiple providers (Google, Facebook,…
schmimd04
  • 1,444
  • 3
  • 14
  • 23
11
votes
1 answer

OAuth - embedding client secret in your application?

I'm looking at the oauth implementation twitter proposes here: https://dev.twitter.com/docs/auth/oauth and oauth libraries like signpost: http://code.google.com/p/oauth-signpost/ they both talk about using the client secret during the oauth flow,…
user291701
  • 38,411
  • 72
  • 187
  • 285
11
votes
2 answers

Why the method getOAuthAccessToken always fire the exception in the twitter4j api?

I'm following a lot of instructions to make a simple tweet from my app. I've already registered it on Twitter, but I just can't make a tweet. I can login, but not update my status. Here's the code to login private void twitterLogOn() { …
MetalCraneo
  • 335
  • 1
  • 4
  • 14