You are here

README.txt in Token authentication 7

Same filename and directory in other branches
  1. 5 README.txt
  2. 6.2 README.txt
  3. 6 README.txt
# Token Authentication

Enable feed readers and other simple clients to see certain private pages by 
providing an authentication token.

## Usage

If you put token=x on the querystring and x is a valid token, then an anonymous 
user will be authenticated as the user who owns the token. You may learn a user's 
token by clicking on the tab on the user's profile page.

## Administration

Go to admin/config/services/tokenauth to configure this module.

### Security

In configuring Token Authentication, be sure to use it with 'low security' 
content only. Tokenauth transmits what amounts to a password in the clear via URL, 
you should assume anyone interested can get ahold of it and use it. Tokenauth 
should be used for functionality requiring user identification more than user 
authentication.

## Developers

Use tokenauth_text_load() to build UIs using the configurable use text.
Use tokenauth_reset_user_form() to get a reset token button.

## Todo
* use the token in other contexts like inbound email (see mailhandler.module)
  

File

README.txt
View source
  1. # Token Authentication
  2. Enable feed readers and other simple clients to see certain private pages by
  3. providing an authentication token.
  4. ## Usage
  5. If you put token=x on the querystring and x is a valid token, then an anonymous
  6. user will be authenticated as the user who owns the token. You may learn a user's
  7. token by clicking on the tab on the user's profile page.
  8. ## Administration
  9. Go to admin/config/services/tokenauth to configure this module.
  10. ### Security
  11. In configuring Token Authentication, be sure to use it with 'low security'
  12. content only. Tokenauth transmits what amounts to a password in the clear via URL,
  13. you should assume anyone interested can get ahold of it and use it. Tokenauth
  14. should be used for functionality requiring user identification more than user
  15. authentication.
  16. ## Developers
  17. Use tokenauth_text_load() to build UIs using the configurable use text.
  18. Use tokenauth_reset_user_form() to get a reset token button.
  19. ## Todo
  20. * use the token in other contexts like inbound email (see mailhandler.module)