TurboFloat License from FastSpring

Anyone know how to create a TurboFloat license from FastSpring? I can make TurboActivate licenses, but don't know what to change to get a TurboFloat license.

-Jason

Hey Jason,

Instead of this:

$post_data = array(    'method' => 'limelm.pkey.generate',    'version_id' => $version_id,    'num_keys' => 1,    'num_acts' => $quantity,    'email' => $email,    'api_key' => $api_key,    'nojsoncallback' => 1,    'format' => 'json');

Use this:

$post_data = array(    'method' => 'limelm.pkey.generate',    'version_id' => $version_id,    'num_keys' => 1,    'num_acts' => $quantity,    'email' => $email,    'api_key' => $api_key,    'nojsoncallback' => 1,    'format' => 'json',    'for_tfs' => 'true');

Notice the "'for_tfs' => 'true'" line.

Excellent!

EASY money. If I send

'for_tfs' => 'false'

would that just create a TA license? I'm asking so that I can just make

'for_tfs'=> something

part of my standard code.

Thanks, by the way.

would that just create a TA license? I'm asking so that I can just make

Yes.

Thanks, by the way.

I'm glad to help.

Thanks Wyatt.

For all those like me who come across this later, you must use 'true' (with single quotes) instead of true. Otherwise, it will not work! Passing a string - not a boolean variable.

The head-scratching ends in victory!