0
votes
0answers
5 views

Twitter OAuth 1 POST requests not working

I am creating an application for iOS and I am using OAuth 1. GET requests seem to work fine but as soon as I try to make POST requests I get the following error : The operation couldn’t be completed. ...
0
votes
0answers
29 views

Ruby: Twitter get_access_token always returns 401 unauthorized

I am trying to use 3-legged authentication to get user's access token. This is just a prototype, so it is not implemented with session yet to save some returned data of API. Please read through the ...
0
votes
0answers
8 views

url = tw.GetAuthorizationLink(consumer, consumersecret)

I am trying to figure out why I cannot get an authentication URL for my application. I've made an app with a open code button to view the 7-digit pin number for the Authentication. It will open the ...
1
vote
0answers
25 views

Scribe (simple OAuth Java lib) and reverse auth token

I would like to use scribe for reverse auth token. reverse auth token is for iPhone, however the first step of retrieving the request token I would like to do in the BE so I don't need to store the ...
-1
votes
1answer
32 views

Specifiy oauth_callback URL for OAuth1 services (twitter)

I am trying to provide seamless login with twitter to my web application. For that, I need twitter to redirect to a specific URL after the user has authorized my application. I do not want the user ...
0
votes
1answer
39 views

OAuth/Twitteroauth library and Authorization headers

I am trying to better understand OAuth by experimenting with the twitteroauth php library. It is my understanding that the way to authenticate over OAuth is to make use of an 'Authorize' header when ...
1
vote
1answer
67 views

Twitter Oauth Giving “The remote server returned an error: (401) ”

I am using the Twitter OAuth to authenticate user and to show the user tweets on my site. Following are the some Constants that are used for API: public const string REQUEST_TOKEN = ...
0
votes
1answer
54 views

ROauth on Windows using R, Invalid response after authorization

I'm using the below script in R, but when I redirect user to browser for oauth. and enter the PIN, it printing an error. Kindly help me out in this case. Thanks. ...
1
vote
0answers
20 views

To create OAuth signature for multi dimensional array

How to create OAuth signature string for multi-dimensional array Example: <?php //MULTI ARRAY $a = array( //KEY 1 CONTAINS AN ARRAY ...
0
votes
2answers
60 views

oAuth verification for using Twitter API with Python

I'm trying to get the oauth request_token for Twitter as described here, making a call to "oauth/request_token": https://dev.twitter.com/docs/auth/implementing-sign-twitter I'm generating the params ...
0
votes
1answer
130 views

How can I get Tweet Timeline with using Backbone.js?

I'm a beginner for Backbone.js. I've finished some tutorials. http://backbonejs.org/docs/todos.html http://coenraets.org/blog/2011/12/backbone-js-wine-cellar-tutorial-part-1-getting-started/ I ...
0
votes
0answers
51 views

Tweepy App Engine example raises 401 exception

I'm using the tweepy google app engine example here as the basis for my application: https://github.com/tweepy/examples/tree/master/appengine The get_authorization_url() method triggers the 401 ...
0
votes
1answer
53 views

Consuming Twitters 1.1 API using OAuth, getting no response and it happens instantly

I am trying to swap my website over to consuming the new Twitter 1.1 API with uses OAuth 1.0a. I am able to get the correct response using a REST client and I am now trying to duplicate that on my ...
1
vote
1answer
191 views

DotNetOpenAuth Twitter Authenticaion Returning 401 Unauthorized

I'm starting to tear my hair out with Twitter and trying to signin a user!!! I have Facebook, Google, OpenId all working fine, just Twitter being a PAIN. I am constantly getting 401 Unauthorized when ...
1
vote
1answer
207 views

Android: Twitter4J Exception (Received Authentication Challenge Is Null)

I'm using Twitter4j library to authorize user with OAuth for my application on Android. But I'm facing this exception when I try to get OAuth request token. I know there are bunch of topics about this ...
0
votes
2answers
131 views

Twitter Streaming API - Node.js returning unauthorised error (OAuth)

I'm attempting to connect to Twitters Streaming API over OAuth using http.get although I'm having a slight problem. The script keeps returning unauthorised The code I'm using follows, can anybody ...
1
vote
0answers
49 views

Submitting to Twitter with Classic ASP

I am trying to implement twitter posting on a website. when a user posts an alert and they check off "submit to twitter" I want to send the contents of the box (140 chars of it) to the associated ...
0
votes
0answers
174 views

RestSharp and Twitter API 1.1: How do I correctly URLEncode status update text?

I'm trying to post a Twitter status from my web app, using RestSharp. The following code works perfectly: var status = "I am fine with posting this status."; var client = new ...
-3
votes
1answer
66 views

In getting request token flow of OAuth, I've received “The given URL is considered malware” [closed]

I'm creating web application with node.js(10.x) and express(3.x). And I chose the node-oauth as the twitter oauth module. But in requesting Token, following error is returned. { statusCode: 401, ...
2
votes
1answer
85 views

Twitter OAuth with android, from REST 1.0 without Login to REST 1.1 with Login

I have an app, that uses the public part of the Twitter API, the on who not requires to login, but with the update, the login is required, so i need to implement OAuth, i've seen there are libraries ...
0
votes
0answers
37 views

Ruby twitter gem: How to provide user login?

I want to use the twitter gem for my application. With my own oauth_token / oauth_secret it works fine, but now I want to establish the possibility for user sign in. In the gem documentation I can not ...
0
votes
0answers
16 views

tmhOAuth breaking on array declaration

I'm trying my hand at twitter posting via tmhOAuth, and I'm having success acquiring all the appropriate token info, but it seems to break when I give that information to tmhOAuth as the example code ...
0
votes
0answers
35 views

oauth.googlecode.com library doesn't seem to add OAuth 'Authorization' HTTP header to app authorization request

I am trying to write an OAuth client to post statuses to Twitter, using the OAuth Core 1.0 library, using its DesktopClient Twitter example, with a few modifications. Here is my code: public class ...
1
vote
1answer
66 views

Http request using Twitter4j doesn't work and gets stuck

I'm using Twitter4j for making a twitter app for learning how to make apps. I've made a very basic app for ICS by copying the sample code from the twitter4j site. The twitter4j api sends an http ...
0
votes
2answers
128 views

Twitter - Already have OAuth database, how do I know who the user is?

I've already got a database set up with a table that is successfully populated with the final (permanent?) OAuth User Token and OAuth User Secret. The thing I don't understand is how I'm supposed to ...
0
votes
1answer
163 views

How to update Twitter OAuth Echo to API v. 1.1 (PHP)

I have a small app that uses (used) OAuth Echo in conjunction with Tweetbot's custom image endpoint to self-host media I post to Twitter. The recent API update has broken the app and I can't seem to ...
0
votes
0answers
57 views

Fetch my Twitter statuses feed using oAuth. Userless.

I can't request my twitter statuses by REST since I deployed my website to a shared hosting. The server IP should have reach the 150 requests/hour limit. So I went to oAuth and I used the mishudark ...
3
votes
2answers
828 views

SSL certificate failed for twitteR in R

I know similar questions have been asked again. However, I've tried everything I found here and on google and nothing seems to work for me. My code is the following: reqURL <- ...
0
votes
1answer
154 views

OAuth token request through GET

I am trying to get an OAuth request token from Twitter with a GET request. I'm not sure if this is possible, but I generate my parameters with this: ...
0
votes
0answers
104 views

Get OAuth request token through JSONP

I am trying to make a pure JavaScript Twitter application. I'm not concerned about the security involving the tokens since this is for internal use. Currently, my code looks like this: $.ajax({ ...
0
votes
0answers
105 views

Post a tweet via OAuth with just JavaScript

I am trying to figure out a way to post a tweet via just JavaScript to twitter for a personal project of mine. It won't be publicly accessible, so I'm not worried about security, which is normally ...
3
votes
1answer
299 views

Twitter API 1.1 OAuth Get Use Data

I read this tutorial to implement twitter oauth in nodejs (for "login with twitter" purpose) - http://codetheory.in/how-to-use-twitter-oauth-with-node-oauth-in-your-node-js-express-application/ The ...
0
votes
1answer
184 views

Using Everyauth/Passport.js to authenticate with Twitter whilst asking for username/email/password

I want to create an authentication system whereby the user can "sign up with Twitter", but all this effectively does is authenticate their Twitter account and prefills a registration form with their ...
3
votes
1answer
287 views

Twitter Authorization with version 1.1 of the API

I have had a search around stackoverflow, but was unable to find an answer to my question, so I thought I'd ask. I'm currently working on an iOS app where I would like to get a feed of a public ...
1
vote
1answer
121 views

Posting to Twitter through OAuthSimple.js

I've been stuck on this one for a while. I'm trying to use OAuthSimple.js to interact with Twitter in a Chrome extension I've written. The signing process seems to work fine for requests to retrieve ...
2
votes
1answer
187 views

Twitter & PHP: permanent access token

For a twitter application with PHP I need to get access tokens for users with the following details: Shouldn't expire (I want to use the access tokens while the users are offline) Read / Write ...
0
votes
1answer
77 views

Difference between https url vs http url as oauth auth callback

According to https://dev.twitter.com/docs/api/1/post/oauth/request_token, it is strongly recommended you use HTTPS for all OAuth authorization steps. However, I found out the callback url is not ...
0
votes
1answer
145 views

Signing Twitter trends API v1.1 request in PHP fails

Since Twitter API version 1.1 every request has to be authenticated and signed via OAuth 1.0a. In my PHP project I want to make use of the Twitter trends API, especially I want to use the GET ...
0
votes
1answer
144 views

Need an OAuth token secret to get an OAuth token secret? What the heck?

I've been trying to implement 'Sign in with Twitter', but I'm stuck at trying to work out how to get an OAuth token secret for the user. The Twitter API docs (here) say: To start a sign in flow, ...
0
votes
0answers
57 views

Post Twitter this Twitteroauth dont works dont post

Im try post in php whit my script php but this dont works, im using the var_export($connection->http_info); to make the debug and make this: array ( 'url' => ...
1
vote
3answers
387 views

Delphi OAuth authentication

I made an application that works with the twitter API to generate tweets. Now I want to expand my application but to do the things I want in my application I have to authenticate with the twitter API. ...
0
votes
0answers
76 views

Tumblr API OAuth - Change Outbound IP Address

I have an application that posts to tumblr using the tumblr API. Code is similar to below: $oauth = new OAuth($conskey,$conssec); ...
0
votes
1answer
13 views

what's the correct log-in response for twitter (for iPhone) with my custom APi

I am writing a custom API for twitter which will be used in Twitter for iPhone. what's the response my third-party API gives to twitter can make twitter think the user is logged in. I know the ...
1
vote
0answers
79 views

Twitter does not remember authorization

I am using Scribe (OAuth1.0) as a mechanism so that users can use their Twitter account to authenticate to my GWT/GAE application. According ...
0
votes
2answers
281 views

twitter oauth php

I am implementing a log-in system for my application based on twitter oAuth and I would like to get the email address and other basic info of tech user, is it possible to get it?
0
votes
1answer
206 views

Twitter API returns 403 while working with update_with_media

I am trying to integrate Image Upload with one of my plugin. I am using tmhOAuth PHP library to work with Twitter API but when I make call to update_with_media.json , it return 403 error. I have not ...
0
votes
0answers
46 views

play-authenticate accesstoken twitter

I am using play-authenticate to login a user with Twitter Oauth2. Now I want to get the Access Token so I can use some Twitter APIs. Is it so obvious that I am missing how to do it? I can get a User ...
0
votes
2answers
521 views

OAuth-PHP and Twitter

I am trying to use OAuth-PHP to post a tweet using PHP, but I can't seem to figure out how to achieve that. Does anyone have any tips on how to do this, or where I should look? I have seen the ...
1
vote
2answers
294 views

Twitter API 1.1 gives error code 32

So. I'm trying to get all statuses from a list feed. To be more specific, this one https://dev.twitter.com/docs/api/1.1/get/lists/statuses It's using the OAuth 1.0a, as far as I know. My problem is, ...
0
votes
1answer
171 views

Posting to Twitter from any page after login/approval with PHP

Users on my website can login to Twitter and post their status on my website and twitter at once. I'm using https://github.com/abraham/twitteroauth to connect to Twitter. Login and posting is ...

1 2 3 4 5