Problem with Oauth Twitter. I need a website to register an application.

I need to use Oauth for a personal twitter script that I am doing. This is not commercial or anything like that. To register it here: https://dev.twitter.com/apps/new I need a site, even if it is a client. This will not allow me to register my application without a website.

Is there anything I can do? If I only created a blog that explains the concept of the script that I use, they will agree with this and let me register an “application” (is it just the script I use?).

+5
source share
3 answers

Client : Application type

- . .

+1

, URL-. , .

+1

, URL- , , , Twitter - oauth_callback. OAuth.

, script, oauth_callback=oob PIN-, . :

  • "" - http://www.whatever.com ( ).
  • Register your script with your operating system to process the custom schema, for example: myscript://
  • Pass oauth_callback=myscript://anystringduring an OAuth stream.

The result is that after user authentication, Twitter calls myscript://anythingfrom the web browser with the last two parameters necessary for the final authentication step, and the OAuth stream will be completed without user intervention.

0
source

All Articles