I'm developing an application that is trying to use Paypal's Express Checkout. After I SetExpressCheckout and "Success" is returned I redirect to PayPal's Sandbox site with this URL: return Redirect("http://www.sandbox.paypal.com?cmd=_express-checkout&TOKEN=" + viewModel.Last()["TOKEN"]);

When I run this from localhost, PayPal says that I need to log in. Now I have a Sandbox login, but I believe I have a Seller test account as well. I think I also need a buyer test account, But whenever I click "New Test Account: Preconfigured" and enter info for a "Buyer" account, it submits but I don't see the new test account anywhere.

So,

A: what login am I supposed to use?

B: where am I supposed to login?

thanks for any help


btw: I know that my initial call to the api is successful:

TOKEN: EC-8EB417855U0122113

TIMESTAMP: 2011-05-20T19:42:41Z

CORRELATIONID: 3b01e2f4ae858

ACK: Success

VERSION: 51.0

BUILD: 1882144

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

When you're testing the ExpressCheckout functionality, you need to be logged in with your Sandbox account. The reason is that PayPal needs to be able to figure out which Sandbox account to associate the Checkout with.

link|improve this answer
Ok, so just so I understand, 1) I go to my site (in development) 2) I checkout 3) I login with my main sandbox account, 4) then I should be able to checkout? – quakkels May 20 '11 at 17:12
Nope nope...the first thing you should do is login with your sandbox account at developer.paypal.com. Then, can go to your development site and test checkout to your heart's content. – stevevls May 20 '11 at 17:15
1) Logged in at developer.paypal.com 2) went to development site and started the express checkout scripts 3) redirected to sandbox which said "Please login to use the PayPal Sandbox features." 4) clicked the link and it redirected to developer.paypal.com and I'm already logged in... I'm confused. I expected to be redirected to some sort of checkout page, not my account home – quakkels May 20 '11 at 17:19
Welcome to coding against PayPal's sandbox. It's often in a wonky-state. But you definitely have the order of operations right. – stevevls May 20 '11 at 17:22
Ok. Thank you for the help. Should I not use sandbox? I don't have resources lying around to test transactions. Do I wait and hope that Sandbox starts working? – quakkels May 20 '11 at 17:26
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.