| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::TokenReturnMethodCodeType
Indicates how the application wants eBay to handle the user's token after the user signs in.
Return the token in the HTTP redirect to the application-specified accept URL.
Leave the token at eBay so that the application can get the token through the FetchToken API call (SecretId required).
Reserved for future use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::TokenReturnMethodCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. TokenReturnMethodCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Redirect => scalar('Redirect');
use constant FetchToken => scalar('FetchToken');
use constant CustomCode => scalar('CustomCode'); 1;