Questions tagged [xauth]

XAuth is a Twitter API method that allows easy OAuth access token retrieval for an account without going through a full OAuth authentication sequence.

With the XAuth API method you can supply Twitter credentials (username/password) and get back a usable access token in one go.

This might be a better functional match for desktop or mobile (=non-web) clients. It could also be used for a one time conversion of a userbase from Twitter credentials to Twitter OAuth access tokens.

See the documentation by Twitter about XAuth for more information. You need to request permission to use this method for you Twitter application by emailing Twitter, stating why you would need this Use Case for your application.

106 questions
1
vote
1 answer

xAuth Authentication for Twitter Share in Android?

I am working on the Twitter Authentication. The Basic Authentication will expire on August 16th onwards. So we have to use OAuth to use Twitter Authentication. But Its some Complicated to implement. XAuth is cuts off the two steps. But the Problem…
Praveen
  • 90,477
  • 74
  • 177
  • 219
1
vote
2 answers

Qt: launch a message box periodically with crontab in ubuntu

I am trying to launch a Qt message box every minute. I added a line in crontab to run the Qt program's executable and redirected the error output to a file in my home directory. There is no problem with the Qt program that launches the message box…
S.E.K.
  • 147
  • 2
  • 11
1
vote
0 answers

Authenticate in PHP with an OAuth 1.0a / x_auth server

Need help authenticating w/ an OAuth 1.0a X_AUTH server in PHP. I've looked at several libs out there and cannot seem to figure to find one that will support an x_auth type setup. Here is the POST that i'm attempting to create. POST…
Jaison Brooks
  • 5,816
  • 7
  • 43
  • 79
1
vote
1 answer

Can we request for email from Twitter using oAuth in Android?

I have a requirement to request Twitter for the User's email. I came across the Twitter Fabric SDK that will retrieve the User's email ie; https://dev.twitter.com/twitter-kit/android/request-email but for that our app has has to be whitelisted by…
Ingrid Cooper
  • 1,191
  • 3
  • 16
  • 27
1
vote
0 answers

Can't register application on Instagram

I am writing C# client for Instagram. I've registered my application and filled the fields: Application Name, Description, Website, OAuth redirect_uri. But I receive this error message in my C# client: This client is not xAuth enabled. I think…
1
vote
0 answers

Popen xauth list

I am trying to run a wxpython script via VNC. When i try to open it i get the error: X11 connection rejected because of wrong authentication. Unable to access the X Display, is $DISPLAY set properly? I solve it via: xauth list sudo xauth add…
1
vote
1 answer

Log into vimeo using xAuth

I try to login within my app to vimeo to upload videos, the App I created on vimeo is approved. Upload Access Approved for the following accounts: Your account I use AFNetworking and AFOAuth1Client (https://github.com/AFNetworking/AFOAuth1Client)…
Omid Hashemi
  • 207
  • 2
  • 13
1
vote
0 answers

xquartz: couldn't query security extension and xterm failing

I am using OSX 10.7.5 from my MacBook Air to login to remote Linux workstation, running Suse (/etc/issue: SUSE Linux Enterprise Desktop 11 SP2 (x86_64) - Kernel \r (\l)) Everything was working fine until I started to play with macports latest X11,…
dmitry777
  • 11
  • 1
  • 2
1
vote
1 answer

Start X Program with /etc/crontab on Debian 6.0.4

I am trying to start a X-Programm (e.g. gedit or Firefox) with crontab. I have searched quite a while, and the forums are full of help, unfortunately nothing was usefull for me. What I am trying is, to start a X-Programm by Crontab. For testing…
Michèle S.
  • 304
  • 1
  • 3
  • 7
1
vote
2 answers

ios5 reverse auth twitter empty response

I just got an email from twitter saying my keys have now been enabled for reverse auth so I git cloned the following project : https://github.com/seancook/TWiOS5ReverseAuthExample and swapped the keys there. I tried running the demo and it seems to…
user281300
  • 1,427
  • 2
  • 19
  • 31
1
vote
1 answer

Trying to get xauth to work with Ruby and the Readability API

I'd like to use the Readability API through the Readit gem; however, I've been having some trouble trying to get an access token through XAuth. Here's the code that I have: require 'highline/import' require 'yaml' require 'oauth' require…
mdanger
  • 23
  • 1
  • 4
0
votes
2 answers

What is the purpose of having access token for server side?

I see that when connecting services to twitter/facebook, sometimes apps are storing the user access token in the server. What is the most common purpose of doing this? I've read several twitter/fb documents and just don't seem to get it. Twitter…
xonegirlz
  • 8,889
  • 19
  • 69
  • 127
0
votes
1 answer

Custom Login using xAuth?

In our project, we want to give the user the option to only fill out one login screen, then the app should check many social networks for this email & password combination and log the user in accordingly. However, the problem we are facing is with…
0
votes
0 answers

How can I safely run a GUI application inside a docker container with multiple networks?

I am trying to access GUI of a client side of my application running inside a docker container. So far I have been using xhost + to disable access control, allowing clients to connect from any host, but this is obviously not a safe solution. I tried…
David
  • 3
  • 2
0
votes
0 answers

Can't run Xpra-HTML5 docker image on OpenShift

I want to run a linux application (.deb package - electron.js) on a client browser using xpra-html5 docker image with the application loaded in it. Everything works fine when I do "docker run" and also when I deploy the application to minikube. I…