| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetSessionID
eBay::API::XML::Call::GetSessionID inherits from the eBay::API::XML::BaseCall class
The runame provided must match the one that will be used for validation during the creation of a user token.
RequiredInput: Yes # Argument: 'xs:string'
A 32-character identifier supplied by eBay to an application. Used to confirm the identities of the user and the application in a URL redirect during the process in which the user agrees to let the application wield a user token that grants the application the right to access eBay data on behalf of the user. Subsequently also used as input for the FetchToken API call.
Returned: Always # Returns: 'xs:string'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetSessionID; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetSessionID.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseCall; our @ISA = ("eBay::API::XML::BaseCall"); use eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType; use eBay::API::XML::Call::GetSessionID::GetSessionIDResponseType;
sub getApiCallName { return 'GetSessionID'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::GetSessionID::GetSessionIDRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::GetSessionID::GetSessionIDResponseType'; } # # input properties #
sub setRuName { my $self = shift; my $sRuName = shift; $self->getRequestDataType()->setRuName($sRuName); } # # output properties #
sub getSessionID { my $self = shift; return $self->getResponseDataType()->getSessionID(); } 1;