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
5
votes
4 answers

Simplest Java example retrieving user_timeline with twitter API version 1.1

I was looking for a simple Java example using the Twitter 1.1 API and couldn't find one. Using the PHP sample posted here: Simplest PHP example for retrieving user_timeline with Twitter API version 1.1 and a few other Stackoverflow posts, I was able…
Michael Lyons
  • 109
  • 1
  • 2
  • 5
5
votes
3 answers

How to post a tweet with Meteor.js, Twitter and Oauth

i have a little problem with Meteor and Twitter. All i want to do is posting a tweet through a click on a button. For this I have to authenticate myself over Oauth to the Twitterservice. At the moment i am doing the authentification in a really…
5
votes
1 answer

Isn't oauth_signature reinventing the SSL wheel?

While using the twitter API, I came across the oauth_signature which is basically a hash of the (request body + request parameters + nonces/timestamps + a consumer_secret). The consumer_secret is known only to the application that is sending the…
Manav
  • 10,094
  • 6
  • 44
  • 51
5
votes
1 answer

How to Twitter Authenticate with multiple hostnames from one domain using the same Twitter App?

I have two hostnames that get sent to the same IP by my DNS: theark.info www.theark.info I explicitly set my callback and domain name in my Twitter App using theark.info. What is the best way to make sure I can use the same Twitter App for Oauth…
EhevuTov
  • 20,205
  • 16
  • 66
  • 71
5
votes
1 answer

django-allauth and twitter integration - Social Network Login Failure

I am trying to work with django-allauth. I followed the instructions at github page and done following: Added allauth urls into urls.py urlpatterns += patterns ('', url('^accounts/', include('allauth.urls')), url('^accounts/profile/$',…
5
votes
2 answers

Using Scribe library for Oauth in Twitter with callback url

I am implementing twitter in my application using scribe. After the user authenticate my app and is redirected to new url, I got the oauth_token and oauth_verifier but could not figure out how to generate oauth_token and oauth_secret from it. Kindly…
Ashish Mittal
  • 141
  • 1
  • 2
  • 9
5
votes
3 answers

Twitter OAUTH returns an empty array

I am working on twitter authentication, everything seems to work well till i get to getAccessToken which returns Array ( [ ] => ). What I have done: First phase: $connection = new TwitterOAuth('xxxxxxxx','xxxxxxxx'); $temporary_credentials =…
Ogugua Belonwu
  • 2,111
  • 6
  • 28
  • 45
4
votes
1 answer

Twitter stream using OAuth in Python behaving differently on two equally configured machines

I have the same piece of coding to deal with Twitter User Stream running on two different machines. Both machines are Ubuntu Lucid using python 2.6.5, but on the machine in my home I receive HTTP Error 401: Unauthorized while on the university it…
Eduardo
  • 4,282
  • 2
  • 49
  • 63
4
votes
2 answers

twitteR and ROAuth

I am currently trying to send tweets from R, but I cannot get around the following error: Error in .self$twFromJSON(out) : Error: Could not authenticate with OAuth. I have followed the directions in the twitteR vignette and the other…
Josh W.
  • 1,123
  • 1
  • 10
  • 17
4
votes
2 answers

Twiiter PHP API Application access Direct Messages Permission?

I have set my application permissions as "read, Write, Direct Messages" as shown in the figure I have saved these settings. But when i authenticate my app. it shows that my application will not be able to access direct messages.As shown in the…
Asghar
  • 2,336
  • 8
  • 46
  • 79
4
votes
2 answers

Does TWRequest work for the twitter streaming api?

I am trying to make a basic iphone app that shows nearby tweets. I was using the TWRequest object to accomplish this with the twitter search api. Unfortunately, I would actually like to mark the tweets on a map using their GPS coordinates and the…
akhalsa
  • 2,303
  • 3
  • 25
  • 43
4
votes
1 answer

Twitter Timestamp out of bounds?

I get this error when trying to post a tweet to twitter. [request] => /1/statuses/update_with_media.json [error] => Timestamp out of bounds This script worked fine till I had issues with my server and they fixed it. I'm thinking it reset the time…
iosfreak
  • 5,228
  • 11
  • 59
  • 102
4
votes
1 answer

Problem with keys and tokens when making requests to Postman via the Twitter API v2 collection

For information, I have a Free account. I want to make requests on Postman with the Twitter API V2 collection to test the API and verify that everything works (keys and tokens) before developing an application. I try to make the GET Single Tweet…
Ribcet76
  • 41
  • 1
4
votes
2 answers

Getting unauthorized_client (Missing valid authorization header) in return on twitter authrorization wuth next-auth

I'm trying to add a Twitter authorization button that gets me user oauth_token & oauth_token_secret which allows our tool to do actions against on the user's behalf. import NextAuth from "next-auth"; import TwitterProvider from…
4
votes
1 answer

sending JSON object using POST Methods

@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent in=getIntent(); Uri uri=in.getData(); // l.setText(uri.toString()); String…