Server-side Twitter client possible with OAUTH?

Tags: , , , , , , , , ,
Posted in dotnet, vb, vb.net | No Comments »

Twitter’ll phase out HTTP basic authentication by August 2010. In the link my scenarios are from Desktop Applications. Basically my client should tweet new posts on a website.

This would be incredibly simple with HTTP basic auth, because I can store and use my account’s username and password in the app to authenticate.
However, with OAUTH I can get final credentials by two means:

  • Callback method. You are redirected to Twitter, (login if isn’t), click allow access, get redirection back to your callback URL.
  • PIN mode. You get a link to open, (login if isn’t), click allow access, receive PIN code. Use this PIN code to authenticate your app.

Do I understand correctly that PIN codes also expire? How is it possible, given a username and password just to tweet from a client application? How can a server side script log in with the username/password and click allow access? All scenarios I could google up are for a web application to authenticate via twitter where the user is in front of the browser to walk through the redirect.

Similar:

  1. how to put api key when sharing with twitter I wrote a code in objective c for sharing on twitter, I pass in to the api the username & password and it runs successfully....
  2. PHP Twitter proxy that supports XAuth on an Apache server I’ve been banging my head against this problem for nearly two days now, and I’m hoping someone on this site can help me. I live...
  3. ASP.NET MVC – HTTP Authentication Prompt Hi there, Is it possible to make my application ask for username and password prompting for it before render a view? Just like on twitter...
  4. What goes between SQL Server and Client? This question is an updated version of a previous question I have asked on here. I am new to client-server model with SQL Server as...
  5. Accessing client-side generated table rows through asp.net server-side Hi, The idea is that a pure html table will be generated on the client side. (using jQuery to add dynamic new rows to the...

Tags: , , , , , , , , ,

Leave a Reply