Difference between revisions of "Token Sites"

From TMM Wiki
Jump to navigationJump to search
Line 5: Line 5:
 
== What is a Token Site? ==
 
== What is a Token Site? ==
  
* A token site gives you the ability to have surfers purchase tokens as options instead of a period of time for membership.  
+
A token site is an alternative to a membership site in [[NATS]]; it requires [[Ct#Surfer|surfers]] to purchase tokens in order to gain access to member content, instead of subscribing to a time-based membership.  
* You then have the ability to send that surfer back to the form to purchase additional tokens under that same username.
+
 
* NATS will keep track of the total number of tokens that a surfer has purchased.
+
In a token site surfers will be able to go back to the NATS [[Ct#Join Form|join form]] and purchase additional tokens under their same username, as opposed to having to re-register when their membership expires. [[NATS]] will keep track of the total number of tokens that a [[Ct#Member|member]] has purchased. In order to keep figures accurate, you can then post to NATS so it deducts the corresponding amount of tokens a member has used in your system.
* You can then post to NATS to deduct the tokens from a member when they are used in your system.
 
  
 
== Posting to Signup ==
 
== Posting to Signup ==
  
* You have the ability to send the surfer through the NATS pre-join form without them needing to see that form.
+
[[NATS]] also offers the ability to send a surfer through the NATS pre-join form without the surfer needing to see that form. The only required data here would be the token option and cascade.
* The only required data is the token option and cascade.
+
 
<pre>
+
To do this, simply redirect the surfer to the join page with the following variables:
Simply redirect the surfer to the join page with these variables:
+
<pre>&signup[optionid]=<TOKENOPTION>&cascade=<CACADEID>&nats=<NATSCODE></pre>
 +
 
 +
If you wish, you can also optionally add all of the other member information fields to be submitted, such as username, password, and e-mail address.
  
&signup[optionid]=<TOKENOPTION>&cascade=<CACADEID>&nats=<NATSCODE>
+
This option is very useful, as you can use it to send members that have already purchased tokens back to the join form, while still being able to use their same username.
</pre>
 
* You can optionally add all of the other fields to be submit like username, password, and e-mail address.
 
  
You can utilize this option to send members that have already purchased back to the join form and use their same username.
+
When a member is created in [[NATS]], they are assigned a token_hash that is passed in all of the postbacks created by NATS. The post to reuse an already registered username MUST contain the original username, as well as either the matching e-mail or matching token_hash. The following provides examples of both:
  
* The post to reuse a username MUST contain the original username and the matching e-mail or matching token_hash.
 
* When a member is created in NATS, they are assigned a token_hash that is passed in all of the NATS postbacks.
 
 
<pre>
 
<pre>
 
&signup[username]=<USERNAME>&signup[email]=<EMAIL>
 
&signup[username]=<USERNAME>&signup[email]=<EMAIL>
Line 35: Line 32:
 
== Deducting Tokens ==
 
== Deducting Tokens ==
  
* To deduct tokens, the post must come from an IP listed in the SECURE IPS array.
+
In order to deduct tokens from a member's account the post must come from an IP listed in the SECURE IPS array; the currently configured secure IPs can be found in the [[NATS4 Configuration Admin|Configuration Admin]] in the "Security Configuration" section. This post will be made to the update_token.php script to update member records.
* The post is made to the update_token.php script.
 
* You MUST post username or memberid.
 
* You MUST also post session or token_hash.
 
* Then include the token_change as the amount of tokens to add or remove.
 
  
 +
Please keep in mind that you MUST post usernames or memberids, and you MUST also post the session or token_hash. When you have done this, include the token_change as the amount of tokens to add or remove.
 +
 +
For example, the following code will remove 5 tokens from the user "testtoken":
 
<pre>
 
<pre>
To remove 5 tokens from user testtoken:
 
 
 
http://linkdomain/update_token.php?username=testtoken&token_hash=c83d33a154692abe82db18a851fb197c&token_change=-5
 
http://linkdomain/update_token.php?username=testtoken&token_hash=c83d33a154692abe82db18a851fb197c&token_change=-5
 
</pre>
 
</pre>

Revision as of 16:19, 22 July 2010

NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
Sites Admin
The Sites Admin
Sites
Site Setup
Site Templates
Tour Setup
Join Options
No Cost Registration
Special Pricing Options
Join Option Rules
Post URL Usage
Post URLs in NATS4
Approval/Upgrade/Denial Variables
Approval/Upgrade/Denial Template Variables
Mobile Tours
Token Sites
ID Numbers
Site Partner
Site User Management
Example Postbacks for Site User Management
Configure Redirects
Split A-B Testing
Username Checking
Form Validation
Post-Biller Templates
Send Information To Special Biller
Join Option Box vs Button
Qualified Join Page Hits
Allowed languages
Customize Join Form
Package Plus
Token Plus
Signup Plus
Type-In Traffic
Coupon Codes
Setting Rules
Site Groups
Options Simulator
ATVOD Verification Process

What is a Token Site?

A token site is an alternative to a membership site in NATS; it requires surfers to purchase tokens in order to gain access to member content, instead of subscribing to a time-based membership.

In a token site surfers will be able to go back to the NATS join form and purchase additional tokens under their same username, as opposed to having to re-register when their membership expires. NATS will keep track of the total number of tokens that a member has purchased. In order to keep figures accurate, you can then post to NATS so it deducts the corresponding amount of tokens a member has used in your system.

Posting to Signup

NATS also offers the ability to send a surfer through the NATS pre-join form without the surfer needing to see that form. The only required data here would be the token option and cascade.

To do this, simply redirect the surfer to the join page with the following variables:

&signup[optionid]=<TOKENOPTION>&cascade=<CACADEID>&nats=<NATSCODE>

If you wish, you can also optionally add all of the other member information fields to be submitted, such as username, password, and e-mail address.

This option is very useful, as you can use it to send members that have already purchased tokens back to the join form, while still being able to use their same username.

When a member is created in NATS, they are assigned a token_hash that is passed in all of the postbacks created by NATS. The post to reuse an already registered username MUST contain the original username, as well as either the matching e-mail or matching token_hash. The following provides examples of both:

&signup[username]=<USERNAME>&signup[email]=<EMAIL>

or

&signup[username]=<USERNAME>&signup[token_hash]=<TOKENHASH>

Deducting Tokens

In order to deduct tokens from a member's account the post must come from an IP listed in the SECURE IPS array; the currently configured secure IPs can be found in the Configuration Admin in the "Security Configuration" section. This post will be made to the update_token.php script to update member records.

Please keep in mind that you MUST post usernames or memberids, and you MUST also post the session or token_hash. When you have done this, include the token_change as the amount of tokens to add or remove.

For example, the following code will remove 5 tokens from the user "testtoken":

http://linkdomain/update_token.php?username=testtoken&token_hash=c83d33a154692abe82db18a851fb197c&token_change=-5