I need to retrieve user token from eBay.
I have all the necessary steps done for the android app I develop - registering with ebay, getting app id, dev id, and app certificate.
I can successfully get a session ID, get the user authenticated to the point when "I agree" is pressed on the eBay authentication page.
However the final step to retrieve the user token fails with error code 16117 - SecretID invalid.
The developer guide of eBay states that SecretID is not needed if there is a valid SessionID.
Can anyone please hint me what could possibly be wrong?
Thanks.
Below is the log of the XML structures (it's obvious that all the previous steps are done correctly and the data is also correct) I send to ebay, and the failure XML response.
03-15 22:40:04.555: INFO/OUT(16905): SESSION ID = pWcBAA**16253a261360a03347979c97fffff5f2
03-15 22:40:04.560: INFO/OUT(16905): XML REQUEST BODY = <?xml versio="1.0" encoding="utf-8"?>
03-15 22:40:04.560: INFO/OUT(16905): <FetchTokenRequest xmlns="urn:ebay:apis:eBLBaseComponents">
03-15 22:40:04.560: INFO/OUT(16905): <SessionID>pWcBAA**16253a261360a03347979c97fffff5f2</SessionID>
03-15 22:40:04.560: INFO/OUT(16905): <Version>763</Version>
03-15 22:40:04.560: INFO/OUT(16905): <WarningLevel>Low</WarningLevel>
03-15 22:40:04.560: INFO/OUT(16905): </FetchTokenRequest>
03-15 22:40:05.075: INFO/OUT(16905): <FetchTokenResponse>
03-15 22:40:05.075: INFO/OUT(16905): <Timestamp>
03-15 22:40:05.080: INFO/OUT(16905): 2012-03-15T11:38:34.605Z
03-15 22:40:05.080: INFO/OUT(16905): </Timestamp>
03-15 22:40:05.080: INFO/OUT(16905): <Ack>
03-15 22:40:05.080: INFO/OUT(16905): Failure
03-15 22:40:05.080: INFO/OUT(16905): </Ack>
03-15 22:40:05.080: INFO/OUT(16905): <Errors>
03-15 22:40:05.080: INFO/OUT(16905): <ShortMessage>
03-15 22:40:05.080: INFO/OUT(16905): The secret Id is invalid.
03-15 22:40:05.080: INFO/OUT(16905): </ShortMessage>
03-15 22:40:05.080: INFO/OUT(16905): <LongMessage>
03-15 22:40:05.080: INFO/OUT(16905): The secret Id you provided does not match with the one you provided earlier.
03-15 22:40:05.080: INFO/OUT(16905): </LongMessage>
03-15 22:40:05.080: INFO/OUT(16905): <ErrorCode>
03-15 22:40:05.080: INFO/OUT(16905): 16117
03-15 22:40:05.080: INFO/OUT(16905): </ErrorCode>
03-15 22:40:05.080: INFO/OUT(16905): <SeverityCode>
03-15 22:40:05.080: INFO/OUT(16905): Error
03-15 22:40:05.080: INFO/OUT(16905): </SeverityCode>
03-15 22:40:05.080: INFO/OUT(16905): <ErrorClassification>
03-15 22:40:05.080: INFO/OUT(16905): RequestError
03-15 22:40:05.080: INFO/OUT(16905): </ErrorClassification>
03-15 22:40:05.080: INFO/OUT(16905): </Errors>
03-15 22:40:05.080: INFO/OUT(16905): <Version>
03-15 22:40:05.080: INFO/OUT(16905): 765
03-15 22:40:05.080: INFO/OUT(16905): </Version>
03-15 22:40:05.080: INFO/OUT(16905): <Build>
03-15 22:40:05.080: INFO/OUT(16905): E765_INTL_BUNDLED_14580691_R1
03-15 22:40:05.080: INFO/OUT(16905): </Build>
03-15 22:40:05.080: INFO/OUT(16905): </FetchTokenResponse>