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
6
votes
3 answers

Sentiment Analysis get tweets match to the search query & do analysis

I want to perform sentiment analysis on twitter. I dont want to store any of the tweets but perform analysis on them such as tweets which says positive stuff about a particular hashtag etc. The problem I have here is that accessing the tweets is too…
6
votes
1 answer

How to signup/login Parse User from authenticated Twitter oauth_token in .NET?

I've used the OAuth1Authenticator class from the Xamarin.Auth component library to allow users to login via Twitter. It authenticates correctly and gets me a response which has the following: oauth_token, oauth_token_secret, user_id, screen_name,…
Mohamed Heiba
  • 1,813
  • 4
  • 38
  • 67
6
votes
5 answers

twitteR throws Forbidden error after entering twitter API PIN

I am trying to analyze some tweets using R and twitteR package. The handshake and registration code seems to work properly and I get the authorization link from R. However, when I enter the PIN obtained from https://api.twitter.com/oauth/authorize I…
user3265306
  • 61
  • 1
  • 3
6
votes
4 answers

REST API, regarding 403 error code?

We are posting Tweets to multiple accounts from same IP address using software application. And in response from twitter , we are getting 403 error code, API used by us is REST API. Is there any limitations on IP address, because surely we are not…
astack
  • 3,837
  • 7
  • 22
  • 21
6
votes
2 answers

Twitter feed in an iOS app - how can i get a list feed just from my own account [without needing the app user to be signed into twitter]

I'm making an iOS App that needs to show tweets in a List feed that i have set up. The problem is that [i don't want to use the end user's twitter account at all], i just want to show that one list feed in the app, by pulling its data in through the…
james.ff
  • 322
  • 4
  • 12
6
votes
1 answer

Authentication for twitter API and Rest Call

I have been using FB api for some simple demo and everything was quite easy with the authentication. Now I have to do something similar with twitter v1.1 but there is something that I really don't understand... Example: I want to do this…
benza
  • 307
  • 1
  • 3
  • 13
6
votes
1 answer

iOS upgrade to twitter api 1.1

I currently have a bunch of apps that go and make simple anonymous calls to the twitter API, and grab several differing timelines. Obviously, twitter is changing things up with 1.1, and is demanding authenticated calls using oauth. Does that mean…
cvb
  • 1,715
  • 18
  • 22
6
votes
4 answers

how to upload image to twitter with android sdk

How to upload images/pics on twitter with android sdk? I am using examples(twitpic) but it's always giving error on this part: mTwitter = new TwitterApp(this, twitter_consumer_key,twitter_secret_key);
Ashish Pandit
  • 61
  • 1
  • 4
6
votes
4 answers

Can /statuses/user_timeline still be read via JavaScript?

I had previously used some jQuery to read tweets on twitter: $.ajax('https://api.twitter.com/1/statuses/user_timeline.json', { crossDomain: true, data: { screen_name: 'twitterapi', count: 5 }, dataType:…
zzzzBov
  • 174,988
  • 54
  • 320
  • 367
6
votes
3 answers

How to show Twitter Posting dialog Like Iphone

I am integrating twitter in my application and want to show twitter post dialog as available in iphone looks like the Image below. Can we have this dialog in Android and how?
Krishnakant Dalal
  • 3,568
  • 7
  • 34
  • 62
6
votes
3 answers

Retrieving Medium or Large Profile Image from Twitter with omniauth-twitter

I'm using omniauth-twitter gem to authenticate users through twitter. I am also using their Twitter profile image as their avatar for my site. However, the image I get from Twitter is low resolution. I know Twitter has better resolution pics…
thatdankent
  • 950
  • 8
  • 15
6
votes
1 answer

What is the standard with oAuth for remembering users?

Me and my colleagues developing an application (both web application and mobile app(iPhone & android)), which includes a login process. Currently, we have our own login mechanism (where users have signed for an account on our app, and have stored…
mustang888
  • 205
  • 1
  • 2
  • 16
6
votes
2 answers

Setting up Twitter OAuth without 3rd party libraries

Continuation from Get twitter public timeline, json+C#, no 3rd party libraries I'm still new to C# and oAuth so please bear with me if I fail to understand anything I've created a C# class named oAuthClass, and these are the variables I currently…
Procrastinatus
  • 121
  • 2
  • 12
6
votes
2 answers

devise/omniauth login with twitter - validation failed: email can't be blank

I've set up authentication in a rails app using devise, following this tutorial. It works great, a user can register and then log in using an email and password. I now want to add the ability to register/log in using twitter. I'm following the…
Finnnn
  • 3,530
  • 6
  • 46
  • 69
5
votes
1 answer

updating twitter status from an application using oauth and twython

I've created an application on twitter's developers site, generated the access token/secret; Using python-twitter I can update the status of the application account: import twitter oauth = twitter.OAuth(OAUTH_TOKEN, OAUTH_SECRET, TWITTER_TOKEN,…
simone cittadini
  • 358
  • 2
  • 14