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
1 answer

What is the best way to handle connection to many Twitter accounts?

My application need a twitter account to create an account and authentify. Then, the user can link any other Twitter accounts as he like. So, a user has ONE main twitter account which allow him to connect to my app, then, he can browser all the…
Hadrien.eu
  • 161
  • 10
5
votes
1 answer

Twitter Search API - since_id and max_id to generate more results

I'm using Abraham twitter library to search for tweets. All is going fine, but the problem is, my search returns more than 100 results. Is there an easy way to loop through, like paging using the newer v1.1 of the API? I need to be able to get all…
sipher_z
  • 1,221
  • 7
  • 25
  • 48
5
votes
1 answer

Can't get Oauth2 (Twitter) to work - returns invalid token

So I'm a bit of a newbie to Go, so excuse my ignorance. I'm trying to do a simple REST API call to twitter using oauth2 for an "application only" calls, but I keep getting "Invalid or expired token" back as an error. Anyone have experience with…
Christopher
  • 412
  • 3
  • 11
5
votes
1 answer

Periscope consumer key and secret

I'm making login through closed periscope api. I'm making POST request at https://api.periscope.tv/api/v2/loginTwitter Request body { "bundle_id": "com.bountylabs.periscope", "phone_number": "", "session_key":…
Gleb Vishnevsky
  • 547
  • 8
  • 16
5
votes
3 answers

TwitterOAuth: Uncaught exception 'This feature is temporarily unavailable'

I am working on an application in Wordpress which allows users to login using their Twitter accounts, and then redirects the users to a form. On submitting that form, a tweet is sent to the user's Twitter handle. I'm using Abraham's twitteroauth to…
Manas Chaturvedi
  • 5,210
  • 18
  • 52
  • 104
5
votes
0 answers

IOS Twitter and Facebook login approaches and security

I started a few weeks ago to develop my first IOS app and it requires Twitter and Facebook Login. I am very surprised about the different approaches that both platforms take in terms of security/authentication. Facebook uses the IOS Bundle ID…
zevarito
  • 362
  • 4
  • 9
5
votes
2 answers

Chosen SHA variant is not supported

I'm developing a mobile application with Ionic and I have to connect with the Twitter API. So I use ng-cordova and $cordovaAuth. But when I do : $cordovaOauth.twitter(clientId, clientSecret); I got the following error : error Error: Chosen SHA…
5
votes
1 answer

Images and media is not showing in TWTRTweetTableViewCell TwitterKit ios

I am fetch tweets using twitter api 1.1 and show them in TWTRTweetTableViewCell but TWTRTweetView is showing the space for media/image but the image/media not showing only text is displaying in TWTRTweetView. For showing tweets TWTRTweet *tweet =…
Waris Shams
  • 1,606
  • 1
  • 15
  • 27
5
votes
1 answer

Twitter API 1.1 Could not authenticate you 2

I'm trying to get result from this query. https://api.twitter.com/1.1/search/tweets.json?q=?&geocode=39.893280,32.779655,5km&count=100 I'm getting code:32 Could not authenticate you error. I'm using parse cloud code. Parse.Cloud.httpRequest({ …
Thellimist
  • 3,757
  • 5
  • 31
  • 49
5
votes
2 answers

Twitter kit - iOS

I thought Twitter Kit was supposed to help developers integrate Twitter in a few lines of code. The online documentation is poor to say the least. I am simply trying to display a single user's timeline in my app within a table view controller. I…
Ben Thomas
  • 105
  • 2
  • 12
5
votes
2 answers

Twitter OAuth - Invalid or expired access token

I am trying to share post using twitteroauth with latest version. Below is my code. require APP."Vendor/twitteroauth-master/autoload.php"; // twitter v0.5.1 SDK if(isset($_REQUEST['oauth_verifier'])) { $request_token = []; …
Shreejibawa
  • 1,860
  • 1
  • 25
  • 35
5
votes
1 answer

How do I make a twitter OAuth Echo verification call?

I'm using this npm package to do OAuth Echo verification of users against twitter: https://github.com/ciaranj/node-oauth Does anyone have an example of how to use this package to verify a users credentials? I'm getting the X-Auth-Service-Provider &…
SomethingOn
  • 9,813
  • 17
  • 68
  • 107
5
votes
2 answers

login with Oauth2 provider in twitter with satellizer

I would like to build a login with satellizer for Twitter. But I can't figure out how it is possible with the use of Oauth2.0. Here's my function: $authProvider.twitter({ authorizationEndpoint: 'https://api.twitter.com/oauth/authorize', …
Ivan Demin
  • 101
  • 2
  • 9
5
votes
2 answers

Twitter Oauth Callback getOAuthRequestToken null

I am using the sample for the app here https://github.com/itog/Twitter4j-android-Sample and it is working. I use the same method in my app but it return null when I at line static final String CALLBACK_URL = "oauth://t4jsample"; [Copy the same as…
shoujo_sm
  • 3,173
  • 4
  • 37
  • 60
5
votes
1 answer

AttributeError: 'NoneType' object has no attribute 'wrap_socket' in GAE

I am try to fetch some tweets in Google App Engine and doing some analysis on that tweets. Due to some issue in urllib3, I am facing the following error : AttributeError: 'NoneType' object has no attribute 'wrap_socket' The last three call are…